about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-03-23 23:48:43 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-03-23 23:48:43 +0000
commitf580aa1c34a9c35c8bc12aa5f12b108dc99f0d6d (patch)
tree8af29263485816c5762438cb48c50eb6f7ef3869 /other
parent2f62a506b6580aaf1fd176eff7f35741bf5c68ba (diff)
downloadnetpbm-mirror-f580aa1c34a9c35c8bc12aa5f12b108dc99f0d6d.tar.gz
netpbm-mirror-f580aa1c34a9c35c8bc12aa5f12b108dc99f0d6d.tar.xz
netpbm-mirror-f580aa1c34a9c35c8bc12aa5f12b108dc99f0d6d.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4062 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r--other/pamexec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/other/pamexec.c b/other/pamexec.c
index 45fed4e3..c68cce0c 100644
--- a/other/pamexec.c
+++ b/other/pamexec.c
@@ -25,7 +25,7 @@
 #include "mallocvar.h"
 #include "pam.h"
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -40,7 +40,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** argv,
-                 struct cmdlineInfo * const cmdlineP) {
+                 struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
    Note that the pointers we place into *cmdlineP are sometimes to storage
    in the argv array.
@@ -157,7 +157,7 @@ doOneImage(FILE *        const ifP,
 int
 main(int argc, const char *argv[]) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
 
     FILE *       ifP;         /* Input file pointer */
     int          eof;         /* No more images in input */