diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2020-08-26 03:42:45 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2020-08-26 03:42:45 +0000 |
commit | dae71e7c5d66dcd719c078285dada4c3c4ac3793 (patch) | |
tree | eadf4178139c58d9b201b0e47a814cb2b03a2857 /other | |
parent | 43b88bd799f634ab9ec6ba36eed2b6d3743b275d (diff) | |
download | netpbm-mirror-dae71e7c5d66dcd719c078285dada4c3c4ac3793.tar.gz netpbm-mirror-dae71e7c5d66dcd719c078285dada4c3c4ac3793.tar.xz netpbm-mirror-dae71e7c5d66dcd719c078285dada4c3c4ac3793.zip |
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3930 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-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; |