Reacted on harmless compiler warnings on Solaris

This commit is contained in:
2010-06-07 17:17:53 +00:00
parent d9b8a5b479
commit 3ef6beab6a
3 changed files with 5 additions and 4 deletions

View File

@ -342,7 +342,7 @@ char *burn_util_thread_id(pid_t pid, pthread_t tid, char text[80])
{
int i, l;
sprintf(text, "[%d,", getpid());
sprintf(text, "[%lu,", (unsigned long int) getpid());
l= strlen(text);
for(i= 0; i < sizeof(pthread_t) && 2 * i < 80 - l - 3; i++)
sprintf(text + l + 2 * i,