diff --git a/src/modules/Image/encodings/tga.c b/src/modules/Image/encodings/tga.c
index 7f1754b3eb35af1d2674bbe44b955b651a96a75c..9fd7e6cf498fded7b26d179fd690a1dc06b0da31 100644
--- a/src/modules/Image/encodings/tga.c
+++ b/src/modules/Image/encodings/tga.c
@@ -1,6 +1,6 @@
 
 /*
- * $Id: tga.c,v 1.3 1999/04/06 03:51:06 per Exp $
+ * $Id: tga.c,v 1.4 1999/04/06 03:57:08 per Exp $
  *
  *  Targa codec for pike. Based on the tga plugin for gimp.
  *
@@ -27,7 +27,6 @@
 
 
 
-RCSID("$Id: tga.c,v 1.3 1999/04/06 03:51:06 per Exp $");
 /*
 **! module Image
 **! submodule TGA
@@ -73,6 +72,8 @@ RCSID("$Id: tga.c,v 1.3 1999/04/06 03:51:06 per Exp $");
 #include "image.h"
 #include "colortable.h"
 
+RCSID("$Id: tga.c,v 1.4 1999/04/06 03:57:08 per Exp $");
+
 #ifndef MIN
 # define MIN(X,Y) ((X)<(Y)?(X):(Y))
 #endif