diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-01-07 04:13:24 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-01-07 04:13:24 +0000 |
commit | cd30a9c336150b8cdec03936d8355acc5d42d039 (patch) | |
tree | bf5598d5cc8681129843d1494d3fbe085ad4fbaa /editor | |
parent | 8cee562736c6c21df21c61d41cce5379a725f5b1 (diff) | |
download | netpbm-mirror-cd30a9c336150b8cdec03936d8355acc5d42d039.tar.gz netpbm-mirror-cd30a9c336150b8cdec03936d8355acc5d42d039.tar.xz netpbm-mirror-cd30a9c336150b8cdec03936d8355acc5d42d039.zip |
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3492 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor')
-rw-r--r-- | editor/pamenlarge.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/pamenlarge.c b/editor/pamenlarge.c index 30f87280..7e2d58c1 100644 --- a/editor/pamenlarge.c +++ b/editor/pamenlarge.c @@ -16,7 +16,7 @@ #include "netpbm/nstring.h" -struct cmdlineInfo { +struct CmdlineInfo { /* All the information the user supplied in the command line, in a form easy for the program to use. */ @@ -30,7 +30,7 @@ struct cmdlineInfo { static void parseCommandLine(int argc, const char ** argv, - struct cmdlineInfo * cmdlineP) { + struct CmdlineInfo * cmdlineP) { /*---------------------------------------------------------------------------- Note that the file spec array we return is stored in the storage that was passed to us as the argv array. @@ -462,7 +462,7 @@ int main(int argc, const char ** const argv) { - struct cmdlineInfo cmdline; + struct CmdlineInfo cmdline; FILE * ifP; struct pam inpam; |