diff src/unexhp9k3.c @ 203:850242ba4a81 r20-3b28

Import from CVS: tag r20-3b28
author cvs
date Mon, 13 Aug 2007 10:02:21 +0200
parents ac2d302a0011
children c42ec1d1cded
line wrap: on
line diff
--- a/src/unexhp9k3.c	Mon Aug 13 10:01:24 2007 +0200
+++ b/src/unexhp9k3.c	Mon Aug 13 10:02:21 2007 +0200
@@ -71,7 +71,7 @@
 
 /********************** Function Prototypes/Declarations ***********/
 
-static void unexec_error (const char *fmt, int use_errno, ...);
+static void unexec_error (CONST char *fmt, int use_errno, ...);
 static int unexec_open (char *filename, int flag, int mode);
 static long unexec_seek (int fd, long position);
 static void unexec_read (int fd, long position, char *buf, int bytes);
@@ -96,9 +96,9 @@
 /*******************************************************************/
 
 static void
-unexec_error (const char *fmt, int use_errno, ...)
+unexec_error (CONST char *fmt, int use_errno, ...)
 {
-  const char *err_msg = SYS_ERR;
+  CONST char *err_msg = SYS_ERR;
   va_list args;
 
   fprintf (stderr, "unexec - ");