about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-03-29 01:05:59 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-03-29 01:05:59 +0000
commit810f50fb10f79bc8b31e195f1e06eb8ad78eec6b (patch)
treeb20686f512373965ec6f4294722451b6a5f5fc3d
parentbdcd3320a478ee14dce7979582d13c495161f00e (diff)
downloadnetpbm-mirror-810f50fb10f79bc8b31e195f1e06eb8ad78eec6b.tar.gz
netpbm-mirror-810f50fb10f79bc8b31e195f1e06eb8ad78eec6b.tar.xz
netpbm-mirror-810f50fb10f79bc8b31e195f1e06eb8ad78eec6b.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2426 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--editor/pamcut.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/pamcut.c b/editor/pamcut.c
index 03573796..7c41af38 100644
--- a/editor/pamcut.c
+++ b/editor/pamcut.c
@@ -24,11 +24,11 @@
        but we hope not.
        */
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
-    const char *inputFileName;  /* File name of input file */
+    const char * inputFileName;  /* File name of input file */
 
     /* The following describe the rectangle the user wants to cut out. 
        the value UNSPEC for any of them indicates that value was not
@@ -52,7 +52,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** const 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.
@@ -628,7 +628,7 @@ extractRowsPBM(const struct pam * const inpamP,
 
 static void
 cutOneImage(FILE *             const ifP,
-            struct cmdlineInfo const cmdline,
+            struct CmdlineInfo const cmdline,
             FILE *             const ofP) {
 
     int leftcol, rightcol, toprow, bottomrow;
@@ -673,7 +673,7 @@ main(int argc, const char *argv[]) {
 
     FILE * const ofP = stdout;
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     FILE * ifP;
     int eof;