diff options
author | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-08-05 13:48:54 -0700 |
---|---|---|
committer | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-08-05 13:48:54 -0700 |
commit | 4d9e463c3fb68f3c1c967f73c5f39dc43ba9fed1 (patch) | |
tree | 2b8e813e6df2e5d5f478715daf3f05310060a0fb | |
parent | 737102c3c7abe183e50c1740be3b5c5276b1fa17 (diff) | |
download | lwip-4d9e463c3fb68f3c1c967f73c5f39dc43ba9fed1.tar.gz lwip-4d9e463c3fb68f3c1c967f73c5f39dc43ba9fed1.tar.xz lwip-4d9e463c3fb68f3c1c967f73c5f39dc43ba9fed1.zip |
gpllib: Fix compilation
ata.c was missing the inttypes.h header.
Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
-rw-r--r-- | com32/gpllib/disk/ata.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/gpllib/disk/ata.c b/com32/gpllib/disk/ata.c index f1716ffa..d74dda8f 100644 --- a/com32/gpllib/disk/ata.c +++ b/com32/gpllib/disk/ata.c @@ -1,3 +1,5 @@ +#include <inttypes.h> + /** * ata_id_string - Convert IDENTIFY DEVICE page into string * @id: IDENTIFY DEVICE results we will examine |