diff --git a/src/modules/Image/encodings/any.c b/src/modules/Image/encodings/any.c
index 0f468e2dc7223124bdcbb80894693f39586481b8..d1230e2a35404dcbd9fa1de6e705c07f3c5d3dca 100644
--- a/src/modules/Image/encodings/any.c
+++ b/src/modules/Image/encodings/any.c
@@ -1,9 +1,9 @@
-/* $Id: any.c,v 1.14 2000/02/24 01:11:22 marcus Exp $ */
+/* $Id: any.c,v 1.15 2000/02/26 22:33:19 hubbe Exp $ */
 
 /*
 **! module Image
 **! note
-**!	$Id: any.c,v 1.14 2000/02/24 01:11:22 marcus Exp $
+**!	$Id: any.c,v 1.15 2000/02/26 22:33:19 hubbe Exp $
 **! submodule ANY
 **!
 **!	This method calls the other decoding methods
@@ -23,7 +23,7 @@
 #include <ctype.h>
 
 #include "stralloc.h"
-RCSID("$Id: any.c,v 1.14 2000/02/24 01:11:22 marcus Exp $");
+RCSID("$Id: any.c,v 1.15 2000/02/26 22:33:19 hubbe Exp $");
 #include "pike_macros.h"
 #include "operators.h"
 #include "builtin_functions.h"
@@ -43,7 +43,7 @@ void image_pnm_decode(INT32 args);
 void image_xwd__decode(INT32 args);
 void image_ilbm_decode(INT32 args);
 void image_ras_decode(INT32 args);
-void img_pvr_f_decode_header(INT32 args);
+void image_pvr_f_decode_header(INT32 args);
 
 /*
 **! method mapping _decode(string data)
@@ -151,7 +151,7 @@ void image_any__decode(INT32 args)
       case CHAR2('P','V'):
       case CHAR2('G','B'):
 	 /* PVR */
-	 img_pvr_f__decode(1);
+	 image_pvr_f__decode(1);
 	 return;
 
       case CHAR2(0,0):
@@ -261,7 +261,7 @@ void image_any_decode_header(INT32 args)
       case CHAR2('P','V'):
       case CHAR2('G','B'):
 	 /* PVR */
-	 img_pvr_f_decode_header(1);
+	 image_pvr_f_decode_header(1);
 	 return;
 
       case CHAR2(0,0):