Fix warning message.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sun, 14 Sep 2008 18:29:21 +0000 (18:29 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sun, 14 Sep 2008 18:29:21 +0000 (18:29 +0000)
[r21950]

parser.c

index 609ef8d..a0fd400 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1030,7 +1030,7 @@ static void report_assign_error(assign_error_t error, type_t *orig_type_left,
 
        case ASSIGN_WARNING_POINTER_FROM_INT:
                warningf(source_position,
-                        "%s makes integer '%T' from pointer '%T' without a cast",
+                        "%s makes pointer '%T' from integer '%T' without a cast",
                                 context, orig_type_left, orig_type_right);
                return;