diff options
author | Rasmus Lerdorf <rasmus@php.net> | 1999-09-04 22:18:43 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 1999-09-04 22:18:43 +0000 |
commit | bcb0020705918aa319aeab4428799c11531edd31 (patch) | |
tree | 6c3c0295630ef93ea2026ae403bb6a9464c979e1 /main/php.h | |
parent | f42659a8f1bfb6c81df41da4c1805aeb11164a78 (diff) | |
download | php-git-bcb0020705918aa319aeab4428799c11531edd31.tar.gz |
Forgot one
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php.h b/main/php.h index 77357dcaf8..af977c8ccf 100644 --- a/main/php.h +++ b/main/php.h @@ -317,7 +317,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define PUTC(c) (zend_body_write(&(c), 1), (c)) #define PHPWRITE_H(str, str_len) zend_header_write((str), (str_len)) #define PUTS_H(str) zend_header_write((str), strlen((str))) -#define PUTC_H(c) zend_header_write(&(c), 1) +#define PUTC_H(c) (zend_header_write(&(c), 1), (c)) #include "zend_operators.h" |