fixed some warnings

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18659 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-08-28 10:20:45 +00:00
parent 096e7f3b92
commit 4e93a7f238
5 changed files with 11 additions and 11 deletions

View File

@ -251,12 +251,12 @@ scsi_request_finished(scsi_ccb *request, uint num_requests)
SHOW_FLOW(3, "%p", request);
if (request->state != SCSI_STATE_SENT) {
panic("Unsent ccb 0x%x was reported as done\n", request);
panic("Unsent ccb %p was reported as done\n", request);
return;
}
if (request->subsys_status == SCSI_REQ_INPROG) {
panic("ccb 0x%xwith status \"Request in Progress\" was reported as done\n",
panic("ccb %p with status \"Request in Progress\" was reported as done\n",
request);
return;
}

View File

@ -322,7 +322,7 @@ static void
fatal_exception(struct iframe *frame)
{
char name[32];
panic("Fatal exception \"%s\" occurred! Error code: 0x%x\n",
panic("Fatal exception \"%s\" occurred! Error code: 0x%lx\n",
exception_name(frame->vector, name, sizeof(name)), frame->error_code);
}
@ -339,7 +339,7 @@ unexpected_exception(struct iframe *frame, debug_exception_type type,
} else {
char name[32];
panic("Unexpected exception \"%s\" occurred in kernel mode! "
"Error code: 0x%x\n",
"Error code: 0x%lx\n",
exception_name(frame->vector, name, sizeof(name)),
frame->error_code);
}
@ -393,7 +393,7 @@ i386_handle_trap(struct iframe frame)
frame.esp = tss->esp;
frame.flags = tss->eflags;
panic("double fault! errorcode = 0x%x\n", frame.error_code);
panic("double fault! errorcode = 0x%lx\n", frame.error_code);
break;
}
@ -542,8 +542,8 @@ i386_handle_trap(struct iframe frame)
pic_end_of_interrupt(frame.vector);
} else {
char name[32];
panic("i386_handle_trap: unhandled trap 0x%x (%s) at ip 0x%x, "
"thread 0x%x!\n", frame.vector,
panic("i386_handle_trap: unhandled trap 0x%lx (%s) at ip 0x%lx, "
"thread 0x%lx!\n", frame.vector,
exception_name(frame.vector, name, sizeof(name)), frame.eip,
thread ? thread->id : -1);
ret = B_HANDLED_INTERRUPT;

View File

@ -559,7 +559,7 @@ free(void *address)
bin = &bins[page[0].bin_index];
if (bin->element_size <= B_PAGE_SIZE && (addr_t)address % bin->element_size != 0)
panic("kfree: passed invalid pointer %p! Supposed to be in bin for esize 0x%x\n", address, bin->element_size);
panic("kfree: passed invalid pointer %p! Supposed to be in bin for esize 0x%lx\n", address, bin->element_size);
#if PARANOID_KFREE
// mark the free space as freed

View File

@ -810,10 +810,10 @@ put_death_stack(uint32 index)
TRACE(("put_death_stack...: passed %lu\n", index));
if (index >= sNumDeathStacks)
panic("put_death_stack: passed invalid stack index %d\n", index);
panic("put_death_stack: passed invalid stack index %ld\n", index);
if (!(sDeathStackBitmap & (1 << index)))
panic("put_death_stack: passed invalid stack index %d\n", index);
panic("put_death_stack: passed invalid stack index %ld\n", index);
state = disable_interrupts();

View File

@ -960,7 +960,7 @@ dump_page_stats(int argc, char **argv)
for (i = 0; i < sNumPages; i++) {
if (sPages[i].state > 7)
panic("page %i at %p has invalid state!\n", i, &sPages[i]);
panic("page %li at %p has invalid state!\n", i, &sPages[i]);
counter[sPages[i].state]++;
}