# HG changeset patch # User pross # Date 1267609089 0 # Node ID ad4ac2a6373f53418cbc866b29d40f9edf69d502 # Parent a184cfcdae54b405a3509f494d62f14abe4a0ea8 use intended const syntax diff -r a184cfcdae54 -r ad4ac2a6373f iff.c --- a/iff.c Wed Mar 03 02:20:48 2010 +0000 +++ b/iff.c Wed Mar 03 09:38:09 2010 +0000 @@ -93,7 +93,7 @@ * @param plane plane number to decode as */ #define DECLARE_DECODEPLANE(suffix, type) \ -static void decodeplane##suffix(void *dst, const uint8_t const *buf, int buf_size, int bps, int plane) \ +static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_size, int bps, int plane) \ { \ GetBitContext gb; \ int i, b; \