Skip to content

Commit 9c52d09

Browse files
George WangLawnGnome
George Wang
authored andcommitted
sapi/litespeed/lsapi_main.c: Fix bug #63228
Fix compiling error at line 606 (error: format not a string literal and no format arguments [-Werror=format-security]
1 parent 0de5fb4 commit 9c52d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/litespeed/lsapi_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ static void cli_usage( TSRMLS_D )
603603
" args... Arguments passed to script.\n";
604604
php_output_startup();
605605
php_output_activate(TSRMLS_C);
606-
php_printf( usage );
606+
php_printf( "%s", usage );
607607
#ifdef PHP_OUTPUT_NEWAPI
608608
php_output_end_all(TSRMLS_C);
609609
#else

0 commit comments

Comments
 (0)