diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-19 01:13:12 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-19 01:13:12 +0000 |
commit | 73b09ecba6dad0070e106a74eeed4bc388d60e02 (patch) | |
tree | f5ca3d4de25238da546341f367b8e52acafce43e /src/hci/strerror.c | |
parent | 06475f7b69dc15551d41f6eb3b20409a8a1f34c6 (diff) | |
download | ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.tar.gz |
Use stdio.h instead of vsprintf.h
Diffstat (limited to 'src/hci/strerror.c')
-rw-r--r-- | src/hci/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/strerror.c b/src/hci/strerror.c index e407d30b8..56b07e8a9 100644 --- a/src/hci/strerror.c +++ b/src/hci/strerror.c @@ -1,6 +1,6 @@ #include <errno.h> #include <string.h> -#include <vsprintf.h> +#include <stdio.h> #include <gpxe/errortab.h> /** @file |