cvsuser 03/07/16 08:46:56
Modified: . exceptions.c
Log:
Quiet a warning on Linux/Alpha
Revision Changes Path
1.19 +2 -2 parrot/exceptions.c
Index: exceptions.c
===================================================================
RCS file: /cvs/public/parrot/exceptions.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -w -r1.18 -r1.19
--- exceptions.c 13 Jul 2003 18:52:43 -0000 1.18
+++ exceptions.c 16 Jul 2003 15:46:56 -0000 1.19
@@ -1,7 +1,7 @@
/* exceptions.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: exceptions.c,v 1.18 2003/07/13 18:52:43 leo Exp $
+ * $Id: exceptions.c,v 1.19 2003/07/16 15:46:56 scog Exp $
* Overview:
* define the internal interpreter exceptions
* Data Structure and Algorithms:
@@ -55,7 +55,7 @@
interpreter->current_file &&
interpreter->current_file->strstart ?
(char *)interpreter->current_file->strstart : "(null)",
- interpreter->current_line);
+ (int)interpreter->current_line);
}
else {
fprintf(stderr, "Parrot file (not available), ");