diff options
-rw-r--r-- | xpr.c | 4 | ||||
-rw-r--r-- | xpr.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -131,8 +131,8 @@ int debug = 0; #define DEFAULT_CUTOFF ((unsigned int) (0xFFFF * 0.50)) -static char *infilename = NULL; -char *progname = NULL; +static const char *infilename = NULL; +const char *progname = NULL; typedef struct _grayRec { int level; @@ -32,7 +32,7 @@ enum orientation { enum device {LN01, LN03, LA100, PS, PP, LJET, PJET, PJETXL}; /* Global variables */ -extern char *progname; +extern const char *progname; extern int debug; /* Global prototypes */ |