Author: tridge
Date: 2005-01-12 22:33:28 +0000 (Wed, 12 Jan 2005)
New Revision: 4719

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4719

Log:
snprintf.c is used outside of samba, so don't use our special types
Modified:
   branches/SAMBA_4_0/source/lib/snprintf.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/snprintf.c
===================================================================
--- branches/SAMBA_4_0/source/lib/snprintf.c    2005-01-12 22:30:54 UTC (rev 
4718)
+++ branches/SAMBA_4_0/source/lib/snprintf.c    2005-01-12 22:33:28 UTC (rev 
4719)
@@ -221,7 +221,7 @@
                        }
                        break;
                case DP_S_MIN:
-                       if (isdigit((uint8_t)ch)) {
+                       if (isdigit((unsigned char)ch)) {
                                min = 10*min + char_to_int (ch);
                                ch = *format++;
                        } else if (ch == '*') {
@@ -241,7 +241,7 @@
                        }
                        break;
                case DP_S_MAX:
-                       if (isdigit((uint8_t)ch)) {
+                       if (isdigit((unsigned char)ch)) {
                                if (max < 0)
                                        max = 0;
                                max = 10*max + char_to_int (ch);

Reply via email to