Skip to content

Commit 4caea0b

Browse files
author
Joey Smith
committed
BROKEN_SPRINTF should be PHP_BROKEN_SPRINTF
1 parent 8aadb68 commit 4caea0b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

main/php_sprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <stdarg.h>
2323
#include "php_config.h"
2424

25-
#if BROKEN_SPRINTF
25+
#if PHP_BROKEN_SPRINTF
2626

2727
int
2828
php_sprintf (char*s, const char* format, ...)

main/snprintf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern int ap_php_vsnprintf(char *, size_t, const char *, va_list ap);
2929
#define vsnprintf ap_php_vsnprintf
3030
#endif
3131

32-
#if BROKEN_SPRINTF
32+
#if PHP_BROKEN_SPRINTF
3333
int php_sprintf (char* s, const char* format, ...);
3434
#define sprintf php_sprintf
3535
#endif

0 commit comments

Comments
 (0)