Skip to content

Commit 54cc76f

Browse files
committed
ext/standard/filters.c: Remove some register keywords
1 parent 587110c commit 54cc76f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/standard/filters.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ static void php_conv_base64_encode_dtor(php_conv_base64_encode *inst)
255255
static php_conv_err_t php_conv_base64_encode_flush(php_conv_base64_encode *inst, const char **in_pp, size_t *in_left_p, char **out_pp, size_t *out_left_p)
256256
{
257257
volatile php_conv_err_t err = PHP_CONV_ERR_SUCCESS;
258-
register unsigned char *pd;
259-
register size_t ocnt;
258+
unsigned char *pd;
259+
size_t ocnt;
260260
unsigned int line_ccnt;
261261

262262
pd = (unsigned char *)(*out_pp);
@@ -328,9 +328,9 @@ static php_conv_err_t php_conv_base64_encode_flush(php_conv_base64_encode *inst,
328328
static php_conv_err_t php_conv_base64_encode_convert(php_conv_base64_encode *inst, const char **in_pp, size_t *in_left_p, char **out_pp, size_t *out_left_p)
329329
{
330330
volatile php_conv_err_t err = PHP_CONV_ERR_SUCCESS;
331-
register size_t ocnt, icnt;
332-
register unsigned char *ps, *pd;
333-
register unsigned int line_ccnt;
331+
size_t ocnt, icnt;
332+
unsigned char *ps, *pd;
333+
unsigned int line_ccnt;
334334

335335
if (in_pp == NULL || in_left_p == NULL) {
336336
return php_conv_base64_encode_flush(inst, in_pp, in_left_p, out_pp, out_left_p);

0 commit comments

Comments
 (0)