about summary refs log tree commit diff
path: root/editor
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-05-18 04:18:58 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-05-18 04:18:58 +0000
commitb281bb3de290d8b82843e1d82aff19a427e3079f (patch)
tree3c7eb974aad2a38c635a849a41554ade50e31b11 /editor
parente353b006aab7f4bd39e525faf10d701ddfbf7926 (diff)
downloadnetpbm-mirror-b281bb3de290d8b82843e1d82aff19a427e3079f.tar.gz
netpbm-mirror-b281bb3de290d8b82843e1d82aff19a427e3079f.tar.xz
netpbm-mirror-b281bb3de290d8b82843e1d82aff19a427e3079f.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4551 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor')
-rw-r--r--editor/ppmdither.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/ppmdither.c b/editor/ppmdither.c
index 6210764a..df94cf34 100644
--- a/editor/ppmdither.c
+++ b/editor/ppmdither.c
@@ -32,7 +32,7 @@ struct colorResolution {
 #define GRN PAM_GRN_PLANE
 #define BLU PAM_BLU_PLANE
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -46,7 +46,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** const 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.
@@ -501,7 +501,7 @@ int
 main(int           argc,
      const char ** argv) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     FILE * ifP;
     tuple ** outTuples;        /* Output image */
     scaler * scalerP;