Browse Source

Only need printf(), so use vsprintf.h instead of console.h

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
75430e813e
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      src/hci/shell.c
  2. 1
    1
      src/hci/strerror.c

+ 1
- 1
src/hci/shell.c View File

@@ -18,7 +18,7 @@
18 18
 
19 19
 #include <stdint.h>
20 20
 #include <stdlib.h>
21
-#include <console.h>
21
+#include <vsprintf.h>
22 22
 #include <readline/readline.h>
23 23
 #include <gpxe/command.h>
24 24
 #include <gpxe/shell.h>

+ 1
- 1
src/hci/strerror.c View File

@@ -1,6 +1,6 @@
1 1
 #include <errno.h>
2 2
 #include <string.h>
3
-#include <console.h>
3
+#include <vsprintf.h>
4 4
 #include <gpxe/errortab.h>
5 5
 
6 6
 /** @file

Loading…
Cancel
Save