8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 14:43:03 +01:00

Fix linux warnings Wformat (#8361)

* Fix linux warnings Wformat

* Remove duplication defines
This commit is contained in:
Dmitry 2024-12-26 14:41:16 +03:00 committed by GitHub
parent 566bebf2d5
commit 3bdaddfb5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -975,7 +975,7 @@ static SLONG safe_interpret(char* const s, const FB_SIZE_T bufsize,
}
if (!found) {
sprintf(s, "unknown ISC error %ld", (SLONG) code); // TXNN
sprintf(s, "unknown ISC error %" SLONGFORMAT, (SLONG) code); // TXNN
}
}
}
@ -1000,11 +1000,11 @@ static SLONG safe_interpret(char* const s, const FB_SIZE_T bufsize,
break;
case isc_arg_dos:
sprintf(s, "unknown dos error %ld", (SLONG) code); // TXNN
sprintf(s, "unknown dos error %" SLONGFORMAT, (SLONG) code); // TXNN
break;
case isc_arg_next_mach:
sprintf(s, "next/mach error %ld", (SLONG) code); // AP
sprintf(s, "next/mach error %" SLONGFORMAT, (SLONG) code); // AP
break;
case isc_arg_win32:
@ -1016,7 +1016,7 @@ static SLONG safe_interpret(char* const s, const FB_SIZE_T bufsize,
s, bufsize, NULL))
#endif
{
sprintf(s, "unknown Win32 error %ld", (SLONG) code); // TXNN
sprintf(s, "unknown Win32 error %" SLONGFORMAT, (SLONG) code); // TXNN
}
break;