1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 16:38:25 +02:00

Added missing format.

This commit is contained in:
Ilia Alshanetsky
2003-09-22 04:21:44 +00:00
parent e2caa6eaf9
commit 10def9a8ae
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -705,7 +705,7 @@ void zend_set_utility_values(zend_utility_values *utility_values)
/* this should be compatible with the standard zenderror */
void zenderror(char *error)
{
zend_error(E_PARSE, error);
zend_error(E_PARSE, "%s", error);
}
+1 -1
View File
@@ -116,7 +116,7 @@ do { \
void zend_fatal_scanner_error(char *message)
{
zend_error(E_COMPILE_ERROR, message);
zend_error(E_COMPILE_ERROR, "%s", message);
}
BEGIN_EXTERN_C()