* strace.cc (handle_output_debug_string): Fix compiler warning.

This commit is contained in:
Corinna Vinschen 2005-03-07 10:24:23 +00:00
parent d34d3da637
commit a593a4c5e3
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-03-07 Corinna Vinschen <corinna@vinschen.de>
* strace.cc (handle_output_debug_string): Fix compiler warning.
2005-03-06 Christopher Faylor <cgf@timesys.com>
* cygpath.cc (usage): Pass in one more copy of program_name to printf

View File

@ -436,7 +436,7 @@ handle_output_debug_string (DWORD id, LPVOID p, unsigned mask, FILE *ofile)
buf[len] = '\0';
char *s = strtok (buf, " ");
unsigned n = strtoul (s, NULL, 16);
unsigned long n = strtoul (s, NULL, 16);
s = strchr (s, '\0') + 1;
@ -562,7 +562,7 @@ handle_output_debug_string (DWORD id, LPVOID p, unsigned mask, FILE *ofile)
if (include_hex)
{
s -= 8;
sprintf (s, "%p", n);
sprintf (s, "%p", (void *) n);
strchr (s, '\0')[0] = ' ';
}
child->last_usecs = usecs;