about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-05-23 20:47:31 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-05-23 20:47:31 +0000
commit1d22688c46f911c9b87501c7205482ae7057d8b6 (patch)
treedafdc63ef25fd51905ceab08d0417392af682f13 /converter
parentadcff94ea9dd955b22f3c4027b1bd6a9a307f619 (diff)
downloadnetpbm-mirror-1d22688c46f911c9b87501c7205482ae7057d8b6.tar.gz
netpbm-mirror-1d22688c46f911c9b87501c7205482ae7057d8b6.tar.xz
netpbm-mirror-1d22688c46f911c9b87501c7205482ae7057d8b6.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@308 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-rw-r--r--converter/other/pamtofits.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/converter/other/pamtofits.c b/converter/other/pamtofits.c
index d0552a5c..b771c6ab 100644
--- a/converter/other/pamtofits.c
+++ b/converter/other/pamtofits.c
@@ -39,10 +39,9 @@ struct cmdlineInfo {
 
 
 static void 
-parseCommandLine(int argc, 
-                 char ** argv, 
-                 struct cmdlineInfo  * const cmdlineP) {
-/* --------------------------------------------------------------------------
+parseCommandLine(int argc, char ** argv,
+                 struct cmdlineInfo * const cmdlineP) {
+/*--------------------------------------------------------------------------
    Parse program command line described in Unix standard form by argc
    and argv.  Return the information in the options as *cmdlineP.  
 
@@ -52,8 +51,8 @@ parseCommandLine(int argc,
    Note that the strings we return are stored in the storage that
    was passed to us as the argv array.  We also trash *argv.
 --------------------------------------------------------------------------*/
-    optEntry *option_def;
-    /* Instructions to optParseOptions3 on how to parse our options. */
+    optEntry * option_def;
+        /* Instructions to optParseOptions3 on how to parse our options. */
     optStruct3 opt;
 
     unsigned int minSpec;
@@ -98,7 +97,6 @@ parseCommandLine(int argc,
 
 
 
-
 static void
 writeHeaderCard(const char * const s) {
 /*----------------------------------------------------------------------------