aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2006-12-20 05:33:12 +0000
committerMichael Brown <mcb30@etherboot.org>2006-12-20 05:33:12 +0000
commit75430e813e35c68a3c1b2484f6aa668da220455b (patch)
tree49bd6a385b16f9844fa85c621856067fc1c3b961 /src
parent2b97d2ebc5b4dbbf2214cc50236b30ed3c0278cf (diff)
downloadipxe-75430e813e35c68a3c1b2484f6aa668da220455b.tar.gz
Only need printf(), so use vsprintf.h instead of console.h
Diffstat (limited to 'src')
-rw-r--r--src/hci/shell.c2
-rw-r--r--src/hci/strerror.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hci/shell.c b/src/hci/shell.c
index 3b1493fe9..2a9bfca43 100644
--- a/src/hci/shell.c
+++ b/src/hci/shell.c
@@ -18,7 +18,7 @@
#include <stdint.h>
#include <stdlib.h>
-#include <console.h>
+#include <vsprintf.h>
#include <readline/readline.h>
#include <gpxe/command.h>
#include <gpxe/shell.h>
diff --git a/src/hci/strerror.c b/src/hci/strerror.c
index 8ed5d2736..70331e42b 100644
--- a/src/hci/strerror.c
+++ b/src/hci/strerror.c
@@ -1,6 +1,6 @@
#include <errno.h>
#include <string.h>
-#include <console.h>
+#include <vsprintf.h>
#include <gpxe/errortab.h>
/** @file