about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-11-14 04:30:48 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-11-14 04:30:48 +0000
commitf34ee94b822b1238ce874ee314b032f64e12f4a3 (patch)
treec891d0dd0f4ff038b759b64402e4e7e89683f2e2
parentb9face528f64ebf903dded7713ff991c0773192e (diff)
downloadnetpbm-mirror-f34ee94b822b1238ce874ee314b032f64e12f4a3.tar.gz
netpbm-mirror-f34ee94b822b1238ce874ee314b032f64e12f4a3.tar.xz
netpbm-mirror-f34ee94b822b1238ce874ee314b032f64e12f4a3.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2310 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/pnmtopalm/pnmtopalm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/converter/other/pnmtopalm/pnmtopalm.c b/converter/other/pnmtopalm/pnmtopalm.c
index 67a17e54..7740a3ac 100644
--- a/converter/other/pnmtopalm/pnmtopalm.c
+++ b/converter/other/pnmtopalm/pnmtopalm.c
@@ -33,8 +33,8 @@ struct cmdline_info {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
-    const char *inputFilespec;  /* Filespecs of input files */
-    char *transparent;          /* -transparent value.  Null if unspec */
+    const char * inputFilespec;  /* Filespecs of input files */
+    const char * transparent;    /* -transparent value.  Null if unspec */
     unsigned int depth;         /* -depth value.  0 if unspec */
     unsigned int maxdepth;      /* -maxdepth value.  0 if unspec */
     enum compressionType compression;
@@ -289,7 +289,7 @@ formatName(int const format) {
         
 
 static void
-findTransparentColor(char *         const colorSpec, 
+findTransparentColor(const char *   const colorSpec, 
                      pixval         const newMaxval,
                      bool           const directColor, 
                      pixval         const maxval,