about summary refs log tree commit diff
path: root/generator/pgmkernel.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-23 17:15:58 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-23 17:15:58 +0000
commit692f47fb3f7acfd12890993c84ad82594fdfafe9 (patch)
tree2f960ee084b979c095a0d6cc2a983ee98cb6180f /generator/pgmkernel.c
parent9a675079290758a7f68e497146cc3688f1c3d364 (diff)
downloadnetpbm-mirror-692f47fb3f7acfd12890993c84ad82594fdfafe9.tar.gz
netpbm-mirror-692f47fb3f7acfd12890993c84ad82594fdfafe9.tar.xz
netpbm-mirror-692f47fb3f7acfd12890993c84ad82594fdfafe9.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4680 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'generator/pgmkernel.c')
-rw-r--r--generator/pgmkernel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generator/pgmkernel.c b/generator/pgmkernel.c
index 37072c38..cbae0882 100644
--- a/generator/pgmkernel.c
+++ b/generator/pgmkernel.c
@@ -39,11 +39,11 @@ static void
 parseCommandLine(int argc, const char ** argv,
                  struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
-  Convert program invocation arguments (argc,argv) into a format the 
+  Convert program invocation arguments (argc,argv) into a format the
   program can use easily, struct cmdlineInfo.  Validate arguments along
   the way and exit program with message if invalid.
 
-  Note that some string information we return as *cmdlineP is in the storage 
+  Note that some string information we return as *cmdlineP is in the storage
   argv[] points to.
 -----------------------------------------------------------------------------*/
     optEntry *option_def;
@@ -57,9 +57,9 @@ parseCommandLine(int argc, const char ** argv,
     MALLOCARRAY_NOFAIL(option_def, 100);
 
     option_def_index = 0;   /* incremented by OPTENTRY */
-    OPTENT3(0,   "weight",  OPT_FLOAT, &cmdlineP->weight, 
+    OPTENT3(0,   "weight",  OPT_FLOAT, &cmdlineP->weight,
             &weightSpec,     0);
-    OPTENT3(0,   "maxval",  OPT_UINT, &cmdlineP->maxval, 
+    OPTENT3(0,   "maxval",  OPT_UINT, &cmdlineP->maxval,
             &maxvalSpec,     0);
 
     opt.opt_table = option_def;