ソースを参照

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

tags/v0.9.3
Michael Brown 18年前
コミット
75430e813e
2個のファイルの変更2行の追加2行の削除
  1. 1
    1
      src/hci/shell.c
  2. 1
    1
      src/hci/strerror.c

+ 1
- 1
src/hci/shell.c ファイルの表示

@@ -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 ファイルの表示

@@ -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

読み込み中…
キャンセル
保存