Cygwin: utils: strace: fix format string

%ll is long valid for mingw builds.  Use this rather than %I64
to avoid a gcc warning

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2018-08-08 09:26:20 +02:00
parent 37f4fea07c
commit 8bfb1afd6b
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ handle_output_debug_string (DWORD id, LPVOID p, unsigned mask, FILE *ofile)
{
s -= 8;
#ifdef __x86_64__
sprintf (s, "%012I64x", n);
sprintf (s, "%012llx", n);
#else
sprintf (s, "%08lx", n);
#endif