comparison src/coding.c @ 101943:97c9e9322753

Remove spurious semicolons.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 11 Feb 2009 09:45:12 +0000
parents 4c1349cf5b50
children 4d3a5c88cb2b
comparison
equal deleted inserted replaced
101942:48d0501a9a76 101943:97c9e9322753
6624 6624
6625 #define CHARBUF_SIZE 0x4000 6625 #define CHARBUF_SIZE 0x4000
6626 6626
6627 #define ALLOC_CONVERSION_WORK_AREA(coding) \ 6627 #define ALLOC_CONVERSION_WORK_AREA(coding) \
6628 do { \ 6628 do { \
6629 int size = CHARBUF_SIZE;; \ 6629 int size = CHARBUF_SIZE; \
6630 \ 6630 \
6631 coding->charbuf = NULL; \ 6631 coding->charbuf = NULL; \
6632 while (size > 1024) \ 6632 while (size > 1024) \
6633 { \ 6633 { \
6634 coding->charbuf = (int *) alloca (sizeof (int) * size); \ 6634 coding->charbuf = (int *) alloca (sizeof (int) * size); \