summaryrefslogtreecommitdiffstats
path: root/src/core/dev.c
diff options
context:
space:
mode:
authorMarty Connor2006-09-27 06:04:55 +0200
committerMarty Connor2006-09-27 06:04:55 +0200
commit1da4faa8960f18f9a1c17a5b8f6227b2efd3f57f (patch)
tree372d5701fc91d9652128df48c6ee1b2deb4473ea /src/core/dev.c
parenteth_ntoa and warnings cleanup (diff)
downloadipxe-1da4faa8960f18f9a1c17a5b8f6227b2efd3f57f.tar.gz
ipxe-1da4faa8960f18f9a1c17a5b8f6227b2efd3f57f.tar.xz
ipxe-1da4faa8960f18f9a1c17a5b8f6227b2efd3f57f.zip
include stdio.h to suppress printf warning, general warnings fixups
Diffstat (limited to 'src/core/dev.c')
-rw-r--r--src/core/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dev.c b/src/core/dev.c
index f03965d25..3d1fdd91c 100644
--- a/src/core/dev.c
+++ b/src/core/dev.c
@@ -132,7 +132,7 @@ int find_by_driver ( struct bus_loc *bus_loc, struct bus_dev *bus_dev,
return 1;
} while ( bus_driver->next_location ( bus_loc ) );
- DBG ( "DEV found no device for driver %s\n" );
+ DBG ( "DEV found no device for driver %s\n", device_driver->name );
return 0;
}