mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Remove extra semicolons
This commit is contained in:
parent
8d18d631b6
commit
9e4d590b19
6 changed files with 6 additions and 8 deletions
|
@ -1898,7 +1898,7 @@ void gdImageFill(gdImagePtr im, int x, int y, int nc)
|
|||
int alphablending_bak;
|
||||
|
||||
/* stack of filled segments */
|
||||
/* struct seg stack[FILL_MAX],*sp = stack;; */
|
||||
/* struct seg stack[FILL_MAX],*sp = stack; */
|
||||
struct seg *stack = NULL;
|
||||
struct seg *sp;
|
||||
|
||||
|
@ -3143,4 +3143,3 @@ clean_on_error:
|
|||
gdFree(src->tpixels);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ int gdAffineShearHorizontal(double dst[6], const double angle)
|
|||
int gdAffineShearVertical(double dst[6], const double angle)
|
||||
{
|
||||
dst[0] = 1;
|
||||
dst[1] = tan(angle * M_PI / 180.0);;
|
||||
dst[1] = tan(angle * M_PI / 180.0);
|
||||
dst[2] = 0;
|
||||
dst[3] = 1;
|
||||
dst[4] = 0;
|
||||
|
@ -331,4 +331,3 @@ int gdAffineEqual (const double m1[6], const double m2[6])
|
|||
fabs (m1[4] - m2[4]) < GD_EPSILON &&
|
||||
fabs (m1[5] - m2[5]) < GD_EPSILON);
|
||||
}
|
||||
|
||||
|
|
|
@ -2122,7 +2122,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
|||
CHECK_ERROR();
|
||||
CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw));
|
||||
|
||||
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);;
|
||||
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);
|
||||
}
|
||||
|
||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||
|
|
|
@ -1457,7 +1457,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
|||
CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw));
|
||||
|
||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
||||
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);;
|
||||
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);
|
||||
#else
|
||||
#error "Implementation required"
|
||||
#endif
|
||||
|
|
|
@ -246,7 +246,7 @@ static php_stream_filter *strfilter_strip_tags_create(const char *filtername, zv
|
|||
{
|
||||
php_strip_tags_filter *inst;
|
||||
php_stream_filter *filter = NULL;
|
||||
zend_string *allowed_tags = NULL;;
|
||||
zend_string *allowed_tags = NULL;
|
||||
|
||||
php_error_docref(NULL, E_DEPRECATED, "The string.strip_tags filter is deprecated");
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ crc_read(zip_source_t *src, void *_ctx, void *data, zip_uint64_t len, zip_source
|
|||
st->comp_size = ctx->size;
|
||||
st->comp_method = ZIP_CM_STORE;
|
||||
st->encryption_method = ZIP_EM_NONE;
|
||||
st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;;
|
||||
st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue