From: Nick Bowler Date: Thu, 4 Feb 2010 06:48:25 +0000 (-0500) Subject: liblbx: Remove exact-width integer types from lbx_state. X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/commitdiff_plain/d6e9f021e855a46fbc5a82fbf6445c0275adb689?ds=inline liblbx: Remove exact-width integer types from lbx_state. --- 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])