about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-03-29 21:16:02 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-03-29 21:16:02 +0000
commit87273bbde192edaff5f269ca785c24b71de0673e (patch)
tree4e1fa6770729013ed89641f03ca834b8b2fcd61f /other
parent23845f8e2ef3a9277d81dddf2ae42d32182118b5 (diff)
downloadnetpbm-mirror-87273bbde192edaff5f269ca785c24b71de0673e.tar.gz
netpbm-mirror-87273bbde192edaff5f269ca785c24b71de0673e.tar.xz
netpbm-mirror-87273bbde192edaff5f269ca785c24b71de0673e.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2164 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r--other/pamchannel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/other/pamchannel.c b/other/pamchannel.c
index 3adb0e66..e89a979b 100644
--- a/other/pamchannel.c
+++ b/other/pamchannel.c
@@ -14,14 +14,14 @@
 #include <string.h>
 
 #include "pm_c_util.h"
-#include "pam.h"
-#include "shhopt.h"
 #include "mallocvar.h"
+#include "shhopt.h"
+#include "pam.h"
 
 #define MAX_CHANNELS 16
     /* The most channels we allow user to specify */
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -37,7 +37,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.
@@ -176,7 +176,7 @@ doOneImage(FILE *       const ifP,
 int
 main(int argc, const char *argv[]) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     FILE * ifP;
     int eof;