about summary refs log tree commit diff
path: root/editor/pnmpaste.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-12-08 16:29:50 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-12-08 16:29:50 +0000
commitec772a5a691559f9c397c36194bcb465be33f14b (patch)
tree61ddd07a11f88b27d03ce1014ad30fcc28448953 /editor/pnmpaste.c
parent3694a5ace95a5decc7a8543b23e4cc47ceaca2a6 (diff)
downloadnetpbm-mirror-ec772a5a691559f9c397c36194bcb465be33f14b.tar.gz
netpbm-mirror-ec772a5a691559f9c397c36194bcb465be33f14b.tar.xz
netpbm-mirror-ec772a5a691559f9c397c36194bcb465be33f14b.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2659 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/pnmpaste.c')
-rw-r--r--editor/pnmpaste.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/pnmpaste.c b/editor/pnmpaste.c
index 0cd9b23b..55fcc9bc 100644
--- a/editor/pnmpaste.c
+++ b/editor/pnmpaste.c
@@ -21,7 +21,7 @@
 
 enum boolOp {REPLACE, AND, OR, XOR /*, NAND, NOR, NXOR */ };
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -36,7 +36,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** argv,
-                 struct cmdlineInfo * const cmdlineP) {
+                 struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
    Note that the file spec array we return is stored in the storage that
    was passed to us as the argv array.
@@ -354,7 +354,7 @@ pasteNonPbm(FILE *       const fpInset,
 int
 main(int argc, const char ** argv) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     FILE * fpInset;
     FILE * fpBase;
     xelval maxvalInset, maxvalBase;