svn commit: trunk/uClibc/libc/stdio

vapier at uclibc.org vapier at uclibc.org
Mon Jan 29 04:04:19 UTC 2007


Author: vapier
Date: 2007-01-28 20:04:19 -0800 (Sun, 28 Jan 2007)
New Revision: 17622

Log:
fix from Roman Kononov for reading in of 64bit types

Modified:
   trunk/uClibc/libc/stdio/_store_inttype.c


Changeset:
Modified: trunk/uClibc/libc/stdio/_store_inttype.c
===================================================================
--- trunk/uClibc/libc/stdio/_store_inttype.c	2007-01-29 04:03:31 UTC (rev 17621)
+++ trunk/uClibc/libc/stdio/_store_inttype.c	2007-01-29 04:04:19 UTC (rev 17622)
@@ -35,7 +35,7 @@
 		*((unsigned char *) dest) = val;
 		return;
 	}
-#if defined(LLONG_MAX) && (LONG_MAX != LLONG_MAX)
+#if defined(LLONG_MAX) && (INT_MAX != LLONG_MAX)
 	if (desttype == PA_FLAG_LONG_LONG) {
 		*((unsigned long long int *) dest) = val;
 		return;




More information about the uClibc-cvs mailing list