diff options
-rw-r--r-- | other/pamdepth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/other/pamdepth.c b/other/pamdepth.c index cf7739f5..a2d2b162 100644 --- a/other/pamdepth.c +++ b/other/pamdepth.c @@ -16,7 +16,7 @@ #include "shhopt.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. */ @@ -29,7 +29,7 @@ struct cmdlineInfo { static void parseCommandLine(int argc, const char ** argv, - struct cmdlineInfo *cmdlineP) { + struct CmdlineInfo * const cmdlineP) { /*---------------------------------------------------------------------------- Note that the file spec strings we return are stored in the storage that was passed to us as the argv array. @@ -135,7 +135,7 @@ transformRaster(struct pam * const inpamP, int main(int argc, const char * argv[]) { - struct cmdlineInfo cmdline; + struct CmdlineInfo cmdline; FILE * ifP; struct pam inpam; struct pam outpam; |