changeset 11336:ad4ac2a6373f libavcodec

use intended const syntax
author pross
date Wed, 03 Mar 2010 09:38:09 +0000
parents a184cfcdae54
children 15dd07e86519
files iff.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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; \