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:
parent
e7d12ece83
commit
3192085307
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user