Revision: 128742
Author:   dpatel
Date:     2007-06-22 13:28:02 -0700 (Fri, 22 Jun 2007)

Log Message:
-----------
Fix warning.

Modified Paths:
--------------
    apple-local/branches/llvm/gcc/c-lex.c

Modified: apple-local/branches/llvm/gcc/c-lex.c
===================================================================
--- apple-local/branches/llvm/gcc/c-lex.c       2007-06-22 17:28:14 UTC (rev 
128741)
+++ apple-local/branches/llvm/gcc/c-lex.c       2007-06-22 20:28:02 UTC (rev 
128742)
@@ -826,7 +826,7 @@
 my_cpp_num_sign_extend (cpp_num num, size_t precision)
 {
   if (num.high)
-    printf("%lu\n", num.high);
+    printf("%lu\n", (long unsigned int) num.high);
   if (!num.unsignedp)
     {
       if (precision > PART_PRECISION)


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to