1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00

c set but unused

This commit is contained in:
Sascha Schumann
2002-05-04 17:41:51 +00:00
parent 34b899e2da
commit 74b09cbcf8
+1 -3
View File
@@ -112,9 +112,7 @@ static int php_iptc_get1(FILE *fp, int spool, unsigned char **spoolbuf TSRMLS_DC
*/
static int php_iptc_read_remaining(FILE *fp, int spool, unsigned char **spoolbuf TSRMLS_DC)
{
int c;
while ((c = php_iptc_get1(fp, spool, spoolbuf TSRMLS_CC)) != EOF) continue;
while (php_iptc_get1(fp, spool, spoolbuf TSRMLS_CC) != EOF) continue;
return M_EOI;
}