From adcb1f10ecdbb6d96e83226e9f9365d7e1d01bbb Mon Sep 17 00:00:00 2001 From: hniksic Date: Mon, 4 Jul 2005 07:48:19 -0700 Subject: [PATCH] [svn] Fix undef. --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index e3044eff..6e9e0a69 100644 --- a/src/utils.c +++ b/src/utils.c @@ -2001,7 +2001,7 @@ base64_decode (const char *base64, char *to) } #undef IS_ASCII -#undef NEXT_BASE64_CHAR +#undef NEXT_CHAR /* Simple merge sort for use by stable_sort. Implementation courtesy Zeljko Vrba with additional debugging by Nenad Barbutov. */