From: Joel Rosdahl Date: Wed, 6 Jan 2010 14:01:56 +0000 (+0100) Subject: Use uint32_t magic/version constants X-Git-Tag: v3.0pre0~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95807ca77313f007f3192e181109d68e1e3127bb;p=thirdparty%2Fccache.git Use uint32_t magic/version constants --- diff --git a/manifest.c b/manifest.c index b25ab5af7..628ae0955 100644 --- a/manifest.c +++ b/manifest.c @@ -67,8 +67,8 @@ * */ -#define MAGIC 0x63436d46U -#define VERSION 0 +static const uint32_t MAGIC = 0x63436d46U; +static const uint32_t VERSION = 0; #define static_assert(e) do { enum { static_assert__ = 1/(e) }; } while (0)