about summary refs log tree commit diff
path: root/analyzer
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-02-03 17:47:50 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-02-03 17:47:50 +0000
commit222fe544d942692af5ff7321f0a348f0736071a2 (patch)
treeae6e3bf286e9b6ffa099b8a0a8f11b952fe6e3d5 /analyzer
parent38c86b1165f0fccc8f33c1c64daac1d6d6069588 (diff)
downloadnetpbm-mirror-222fe544d942692af5ff7321f0a348f0736071a2.tar.gz
netpbm-mirror-222fe544d942692af5ff7321f0a348f0736071a2.tar.xz
netpbm-mirror-222fe544d942692af5ff7321f0a348f0736071a2.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3138 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'analyzer')
-rw-r--r--analyzer/ppmhist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/analyzer/ppmhist.c b/analyzer/ppmhist.c
index 9b526606..fafca912 100644
--- a/analyzer/ppmhist.c
+++ b/analyzer/ppmhist.c
@@ -22,7 +22,7 @@ enum sort {SORT_BY_FREQUENCY, SORT_BY_RGB};
 
 enum ColorFmt {FMT_DECIMAL, FMT_HEX, FMT_FLOAT, FMT_PPMPLAIN};
 
-struct cmdline_info {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -38,7 +38,7 @@ struct cmdline_info {
 
 static void
 parseCommandLine(int argc, const char ** argv,
-                 struct cmdline_info * 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.
@@ -470,7 +470,7 @@ printInvalidSamples(colorhist_vector const chv,
 int
 main(int argc, const char *argv[]) {
 
-    struct cmdline_info cmdline;
+    struct CmdlineInfo cmdline;
     FILE * ifP;
     colorhist_vector chv;
     colorhist_vector chvInvalid;