add format string bug to example integration test (#1087)

This commit is contained in:
bmc-msft
2021-07-20 05:00:45 -04:00
committed by GitHub
parent 152dd190b7
commit e065b571f7

View File

@ -26,7 +26,9 @@ int check(const char *data, size_t len)
{
if (buf[i] != buf[buflen - 1 - i])
{
printf("not palindrome\n");
printf("not palindrome: ");
printf(buf);
printf("\n");
break;
}
}