From d6e9f021e855a46fbc5a82fbf6445c0275adb689 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Thu, 4 Feb 2010 01:48:25 -0500 Subject: [PATCH] liblbx: Remove exact-width integer types from lbx_state. --- src/lbx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lbx.c b/src/lbx.c index 4b5d7f3..ff1914e 100644 --- a/src/lbx.c +++ b/src/lbx.c @@ -23,7 +23,6 @@ #include #include #include -#include #include #include @@ -46,8 +45,8 @@ struct lbx_state { int (*dtor)(void *handle); void *f; - uint16_t nfiles; - uint32_t offsets[]; + unsigned short nfiles; + unsigned long offsets[]; }; static struct lbx_state *lbx_init(unsigned char hdr[static LBX_HDR_SIZE]) -- 2.43.2