glide2x, tests: fix format warning test25.c

This commit is contained in:
sezero
2018-08-22 21:36:33 +03:00
parent c6de03a346
commit e7cc47e93e
3 changed files with 3 additions and 3 deletions

View File

@@ -875,7 +875,7 @@ int main( int argc, char **argv) {
{
char str[256];
swapDelay = (int) c - 0x30;
sprintf(str, "Swapdelay = %ld\n", swapDelay);
sprintf(str, "Swapdelay = %d\n", swapDelay);
tlConOutput(str);
}
break;

View File

@@ -875,7 +875,7 @@ int main( int argc, char **argv) {
{
char str[256];
swapDelay = (int) c - 0x30;
sprintf(str, "Swapdelay = %ld\n", swapDelay);
sprintf(str, "Swapdelay = %d\n", swapDelay);
tlConOutput(str);
}
break;

View File

@@ -875,7 +875,7 @@ int main( int argc, char **argv) {
{
char str[256];
swapDelay = (int) c - 0x30;
sprintf(str, "Swapdelay = %ld\n", swapDelay);
sprintf(str, "Swapdelay = %d\n", swapDelay);
tlConOutput(str);
}
break;