[Haiku-commits] r27790 - haiku/trunk/src/system/kernel
axeld at BerliOS
axeld at mail.berlios.de
Tue Sep 30 16:13:56 CEST 2008
Author: axeld
Date: 2008-09-30 16:13:55 +0200 (Tue, 30 Sep 2008)
New Revision: 27790
ViewCVS: http://svn.berlios.de/viewcvs/haiku?rev=27790&view=rev
Modified:
haiku/trunk/src/system/kernel/int.c
Log:
* Fixed warning.
Modified: haiku/trunk/src/system/kernel/int.c
===================================================================
--- haiku/trunk/src/system/kernel/int.c 2008-09-30 10:04:22 UTC (rev 27789)
+++ haiku/trunk/src/system/kernel/int.c 2008-09-30 14:13:55 UTC (rev 27790)
@@ -81,10 +81,9 @@
io != &sVectors[i].handler_list; io = io->next) {
const char *symbol, *imageName;
bool exactMatch;
- addr_t address, baseAddress;
status_t error = elf_debug_lookup_symbol_address((addr_t)io->func,
- &baseAddress, &symbol, &imageName, &exactMatch);
+ NULL, &symbol, &imageName, &exactMatch);
if (error == B_OK && exactMatch) {
if (strchr(imageName, '/') != NULL)
imageName = strrchr(imageName, '/') + 1;
More information about the Haiku-commits
mailing list