summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Fuhrmannek2015-05-18 12:48:56 +0200
committerBen Fuhrmannek2015-05-18 12:48:56 +0200
commitef3430f6e53c25838fdae89d32af7f70d780f950 (patch)
tree7e649c9501e371e0a26bddecac6d160c12d475d4
parent9287786f319b8e86306ae617b92c00e4aaf6cae8 (diff)
prevent compiler warning
-rw-r--r--php_suhosin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/php_suhosin.h b/php_suhosin.h
index 616d603..7b86e7a 100644
--- a/php_suhosin.h
+++ b/php_suhosin.h
@@ -35,7 +35,7 @@
35#define SDEBUG(msg...) \ 35#define SDEBUG(msg...) \
36 {FILE *f;f=fopen(SUHOSIN_LOG, "a+");if(f){fprintf(f,"[%u] ",getpid());fprintf(f, msg);fprintf(f,"\n");fclose(f);}} 36 {FILE *f;f=fopen(SUHOSIN_LOG, "a+");if(f){fprintf(f,"[%u] ",getpid());fprintf(f, msg);fprintf(f,"\n");fclose(f);}}
37#else 37#else
38#define SDEBUG(...) 38#define SDEBUG(msg...)
39#endif 39#endif
40#endif 40#endif
41 41