diff options
| author | Marty Connor | 2006-09-27 06:04:55 +0200 |
|---|---|---|
| committer | Marty Connor | 2006-09-27 06:04:55 +0200 |
| commit | 1da4faa8960f18f9a1c17a5b8f6227b2efd3f57f (patch) | |
| tree | 372d5701fc91d9652128df48c6ee1b2deb4473ea /src/core/dev.c | |
| parent | eth_ntoa and warnings cleanup (diff) | |
| download | ipxe-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.c | 2 |
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; } |
