[svn:parrot] r44850 - trunk/src/call

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Mar 10 07:13:51 UTC 2010


Author: mikehh
Date: Wed Mar 10 07:13:47 2010
New Revision: 44850
URL: https://trac.parrot.org/parrot/changeset/44850

Log:
fix compiler warning

Modified:
   trunk/src/call/args.c

Modified: trunk/src/call/args.c
==============================================================================
--- trunk/src/call/args.c	Wed Mar 10 05:32:44 2010	(r44849)
+++ trunk/src/call/args.c	Wed Mar 10 07:13:47 2010	(r44850)
@@ -3054,7 +3054,7 @@
         *(PMC **)ptr = value;
         break;
       default:
-        PARROT_FAILURE(!"Impossible type");
+        PARROT_FAILURE("Impossible type");
     }
 }
 


More information about the parrot-commits mailing list