mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
Pssst, compiler!
This commit is contained in:
@@ -286,7 +286,7 @@ static void php_sapi_phpdbg_send_header(sapi_header_struct *sapi_header, void *s
|
||||
|
||||
static void php_sapi_phpdbg_log_message(char *message TSRMLS_DC) /* {{{ */
|
||||
{
|
||||
phpdbg_error(message);
|
||||
phpdbg_error("%s", message);
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
+1
-1
@@ -192,7 +192,7 @@ PHPDBG_API phpdbg_input_t **phpdbg_read_argv(char *buffer, int *argc TSRMLS_DC)
|
||||
|
||||
case IN_STRING:
|
||||
phpdbg_error(
|
||||
"Malformed command line (unclosed quote) @ %d: %s!",
|
||||
"Malformed command line (unclosed quote) @ %ld: %s!",
|
||||
(p - buffer)-1, &buffer[(p - buffer)-1]);
|
||||
break;
|
||||
|
||||
|
||||
+2
-2
@@ -152,7 +152,7 @@ void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, ze
|
||||
(!(PHPDBG_G(flags) & PHPDBG_IS_QUIET) ||
|
||||
(PHPDBG_G(flags) & PHPDBG_IS_STEPPING))) {
|
||||
/* output line info */
|
||||
phpdbg_notice("#%- 5lu %16p %-30s %s %s",
|
||||
phpdbg_notice("#%-5u %16p %-30s %s %s",
|
||||
opline->lineno,
|
||||
opline,
|
||||
phpdbg_decode_opcode(opline->opcode),
|
||||
@@ -161,7 +161,7 @@ void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, ze
|
||||
}
|
||||
|
||||
if (!ignore_flags && PHPDBG_G(oplog)) {
|
||||
phpdbg_log_ex(PHPDBG_G(oplog), "#%- 5lu %16p %-30s %s %s",
|
||||
phpdbg_log_ex(PHPDBG_G(oplog), "#%-5u %16p %-30s %s %s",
|
||||
opline->lineno,
|
||||
opline,
|
||||
phpdbg_decode_opcode(opline->opcode),
|
||||
|
||||
+2
-2
@@ -70,12 +70,12 @@ static inline void phpdbg_print_function_helper(zend_function *method TSRMLS_DC)
|
||||
char *decode = phpdbg_decode_opline(op_array, opline, &vars TSRMLS_CC);
|
||||
if (decode != NULL) {
|
||||
phpdbg_writeln(
|
||||
"\t\t#%lu\t%p %-30s %s",
|
||||
"\t\t#%u\t%p %-30s %s",
|
||||
opline->lineno,
|
||||
opline,
|
||||
phpdbg_decode_opcode(opline->opcode),
|
||||
decode);
|
||||
} else phpdbg_error("\tFailed to decode opline @ %ld", opline);
|
||||
} else phpdbg_error("\tFailed to decode opline %16p", opline);
|
||||
free(decode);
|
||||
opline++;
|
||||
} while (++opcode < end);
|
||||
|
||||
Reference in New Issue
Block a user