From c4a677df79b4b0b0047ac956eaedaedcf8710ea0 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 14 Mar 2007 02:58:12 +0000 Subject: [PATCH] Made this define consistent with AMXX --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40615 --- core/sm_stringutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sm_stringutil.cpp b/core/sm_stringutil.cpp index b5686319..235a790b 100644 --- a/core/sm_stringutil.cpp +++ b/core/sm_stringutil.cpp @@ -22,7 +22,7 @@ #define LADJUST 0x00000004 /* left adjustment */ #define ZEROPAD 0x00000080 /* zero (as opposed to blank) pad */ -#define UPPERDIGITS 0x00000100 /* make alpha digits uppercase */ +#define UPPERDIGITS 0x00000200 /* make alpha digits uppercase */ #define to_digit(c) ((c) - '0') #define is_digit(c) ((unsigned)to_digit(c) <= 9)