From fce40f165a2a312fa10a997461ac07ff44d59ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Sat, 26 Feb 2000 14:33:19 -0800 Subject: [PATCH] fixed pvr references Rev: src/modules/Image/encodings/any.c:1.15 --- src/modules/Image/encodings/any.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/Image/encodings/any.c b/src/modules/Image/encodings/any.c index 0f468e2dc7..d1230e2a35 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): -- GitLab