Fix format-overflow warnings in tests
The tests previously ignored these warnings but the change in compiler flags caused them to fail.
This commit is contained in:
@ -66,7 +66,7 @@ int main(int argc, char* argv[])
|
||||
{
|
||||
TestConnections* Test = new TestConnections(argc, argv);
|
||||
Test->set_timeout(30);
|
||||
char str[1024];
|
||||
char str[4096 + 1024];
|
||||
|
||||
sprintf(str,
|
||||
"php %s/bug729.php %s %d %s %s",
|
||||
|
||||
Reference in New Issue
Block a user