about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-03-12 21:15:15 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-03-12 21:15:15 +0000
commitdebfd161228669926437c15b064f54ad8197828a (patch)
tree6aa622c8402685f93a5b2eb755cb985326e0bcdc
parent64c38595823bd7b2f338b5b2466d1c14ff8fad0c (diff)
downloadnetpbm-mirror-debfd161228669926437c15b064f54ad8197828a.tar.gz
netpbm-mirror-debfd161228669926437c15b064f54ad8197828a.tar.xz
netpbm-mirror-debfd161228669926437c15b064f54ad8197828a.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4303 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/pamtopdbimg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/converter/other/pamtopdbimg.c b/converter/other/pamtopdbimg.c
index 5ead08c2..890237a8 100644
--- a/converter/other/pamtopdbimg.c
+++ b/converter/other/pamtopdbimg.c
@@ -46,7 +46,7 @@
 
 enum CompMode {COMPRESSED, MAYBE, UNCOMPRESSED};
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -61,7 +61,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** argv,
-                 struct cmdlineInfo * const cmdlineP) {
+                 struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
    parse program command line described in Unix standard form by argc
    and argv.  Return the information in the options as *cmdlineP.
@@ -724,7 +724,7 @@ readtxt(IPDB *       const pdbP,
 int
 main(int argc, const char **argv) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     IPDB * pdbP;
     FILE * ifP;
     int comp;