corrected format specifier to remove warning.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1259 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2002-09-29 00:25:13 +00:00
parent e7d12ece83
commit 3192085307

View File

@ -260,7 +260,7 @@ count_regions(char const *buff, int phnum, int phentsize)
/* we don't use it */
break;
default:
FATAL(true, "unhandled pheader type 0x%x\n", pheaders[i].p_type);
FATAL(true, "unhandled pheader type 0x%lx\n", pheaders[i].p_type);
break;
}
}
@ -406,7 +406,7 @@ parse_program_headers(image_t *image, char *buff, int phnum, int phentsize)
/* we don't use it */
break;
default:
FATAL(true, "unhandled pheader type 0x%x\n", pheaders[i].p_type);
FATAL(true, "unhandled pheader type 0x%lx\n", pheaders[i].p_type);
break;
}
}