Fix thinko.
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 6 May 1999 00:33:11 +0000 (00:33 +0000)
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 6 May 1999 00:33:11 +0000 (00:33 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26799 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/verify.c

index 8779bd0..6aeb838 100644 (file)
@@ -1287,7 +1287,7 @@ verify_jvm_instructions (jcf, byte_ops, length)
   message = "program counter out of range";
   goto verify_error;
  verify_error:
-  error ("verification error at PC=%d: %s", oldpc);
+  error ("verification error at PC=%d", oldpc);
   error (message);
   return 0;
 }