cvsuser 03/07/28 14:53:00
Modified: . interpreter.c
Log:
Fix typo in error message
Revision Changes Path
1.182 +2 -2 parrot/interpreter.c
Index: interpreter.c
===================================================================
RCS file: /cvs/public/parrot/interpreter.c,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -w -r1.181 -r1.182
--- interpreter.c 28 Jul 2003 02:42:11 -0000 1.181
+++ interpreter.c 28 Jul 2003 21:52:59 -0000 1.182
@@ -1,7 +1,7 @@
/* interpreter.c
* Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: interpreter.c,v 1.181 2003/07/28 02:42:11 scog Exp $
+ * $Id: interpreter.c,v 1.182 2003/07/28 21:52:59 scog Exp $
* Overview:
* The interpreter api handles running the operations
* Data Structure and Algorithms:
@@ -56,7 +56,7 @@
op_lib_t *oplib;
if (!handle)
- internal_exception(1, "Could't load oplib file '%s': %s\n",
+ internal_exception(1, "Couldn't load oplib file '%s': %s\n",
file, Parrot_dlerror());
init_func =
(oplib_init_f)(ptrcast_t)Parrot_dlsym(handle, init_func_name);