Skip to content

Commit 9e4d590

Browse files
committed
Remove extra semicolons
1 parent 8d18d63 commit 9e4d590

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

ext/gd/libgd/gd.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1898,7 +1898,7 @@ void gdImageFill(gdImagePtr im, int x, int y, int nc)
18981898
int alphablending_bak;
18991899

19001900
/* stack of filled segments */
1901-
/* struct seg stack[FILL_MAX],*sp = stack;; */
1901+
/* struct seg stack[FILL_MAX],*sp = stack; */
19021902
struct seg *stack = NULL;
19031903
struct seg *sp;
19041904

@@ -3143,4 +3143,3 @@ int gdImagePaletteToTrueColor(gdImagePtr src)
31433143
gdFree(src->tpixels);
31443144
return 0;
31453145
}
3146-

ext/gd/libgd/gd_matrix.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ int gdAffineShearHorizontal(double dst[6], const double angle)
246246
int gdAffineShearVertical(double dst[6], const double angle)
247247
{
248248
dst[0] = 1;
249-
dst[1] = tan(angle * M_PI / 180.0);;
249+
dst[1] = tan(angle * M_PI / 180.0);
250250
dst[2] = 0;
251251
dst[3] = 1;
252252
dst[4] = 0;
@@ -331,4 +331,3 @@ int gdAffineEqual (const double m1[6], const double m2[6])
331331
fabs (m1[4] - m2[4]) < GD_EPSILON &&
332332
fabs (m1[5] - m2[5]) < GD_EPSILON);
333333
}
334-

ext/pcre/pcre2lib/sljit/sljitNativePPC_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
21222122
CHECK_ERROR();
21232123
CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw));
21242124

2125-
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);;
2125+
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);
21262126
}
21272127

21282128
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,

ext/pcre/pcre2lib/sljit/sljitNativeSPARC_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
14571457
CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw));
14581458

14591459
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
1460-
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);;
1460+
return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);
14611461
#else
14621462
#error "Implementation required"
14631463
#endif

ext/standard/filters.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ static php_stream_filter *strfilter_strip_tags_create(const char *filtername, zv
246246
{
247247
php_strip_tags_filter *inst;
248248
php_stream_filter *filter = NULL;
249-
zend_string *allowed_tags = NULL;;
249+
zend_string *allowed_tags = NULL;
250250

251251
php_error_docref(NULL, E_DEPRECATED, "The string.strip_tags filter is deprecated");
252252

ext/zip/lib/zip_source_crc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ crc_read(zip_source_t *src, void *_ctx, void *data, zip_uint64_t len, zip_source
150150
st->comp_size = ctx->size;
151151
st->comp_method = ZIP_CM_STORE;
152152
st->encryption_method = ZIP_EM_NONE;
153-
st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;;
153+
st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;
154154
}
155155
return 0;
156156
}

0 commit comments

Comments
 (0)