about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-09-28 15:34:01 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-09-28 15:34:01 +0000
commit9be62fe231c9bc946af37365fc6f48bf71c63961 (patch)
tree378e74fc664bc04fbf57ab6d173402cfd2827ffa /converter/other
parent427b46e80fa203ffbd5e1eba0d360bd5fd1c8dca (diff)
downloadnetpbm-mirror-9be62fe231c9bc946af37365fc6f48bf71c63961.tar.gz
netpbm-mirror-9be62fe231c9bc946af37365fc6f48bf71c63961.tar.xz
netpbm-mirror-9be62fe231c9bc946af37365fc6f48bf71c63961.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3341 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/fiasco/lib/error.c31
1 files changed, 17 insertions, 14 deletions
diff --git a/converter/other/fiasco/lib/error.c b/converter/other/fiasco/lib/error.c
index 08291ce0..b674c0fd 100644
--- a/converter/other/fiasco/lib/error.c
+++ b/converter/other/fiasco/lib/error.c
@@ -3,14 +3,14 @@
  *
  *  Written by:		Stefan Frank
  *			Ullrich Hafner
- *  
+ *
  *  Credits:	Modelled after variable argument routines from Jef
- *		Poskanzer's pbmplus package. 
+ *		Poskanzer's pbmplus package.
  *
  *  This file is part of FIASCO (Fractal Image And Sequence COdec)
  *  Copyright (C) 1994-2000 Ullrich Hafner
 
-    "int dummy = " change to int dummy; dummy =" for Netpbm to avoid 
+    "int dummy = " change to int dummy; dummy =" for Netpbm to avoid
     unused variable warning.
 
  */
@@ -47,7 +47,7 @@
 /*****************************************************************************
 
 			     local variables
-  
+
 *****************************************************************************/
 
 static fiasco_verbosity_e  verboselevel  = FIASCO_SOME_VERBOSITY;
@@ -60,7 +60,7 @@ jmp_buf env;
 /*****************************************************************************
 
 			       public code
-  
+
 *****************************************************************************/
 
 void
@@ -100,7 +100,7 @@ set_error(const char *format, ...) {
     if (error_message)
         Free(error_message);
     error_message = Calloc(len, sizeof (char));
-   
+
     vsprintf(error_message, format, args);
 
     va_end(args);
@@ -116,7 +116,7 @@ error(const char *format, ...) {
     va_list      args;
     unsigned     len;
     const char * str;
-   
+
     len = 0; /* initial value */
     str = &format[0];  /* initial value */
 
@@ -141,7 +141,7 @@ error(const char *format, ...) {
             exit(1);
 #endif
         };
-      
+
         ++str;
     }
     va_end(args);
@@ -151,11 +151,11 @@ error(const char *format, ...) {
     if (error_message)
         Free(error_message);
     error_message = Calloc(len, sizeof (char));
-   
+
     vsprintf(error_message, format, args);
 
     va_end(args);
-   
+
 #if HAVE_SETJMP_H
     longjmp(env, 1);
 #else
@@ -192,7 +192,7 @@ file_error (const char *filename)
    error ("File `%s': I/O Error - %s.", filename, get_system_error ());
 }
 
-void 
+void
 warning (const char *format, ...)
 /*
  *  Issue a warning and continue execution.
@@ -206,7 +206,7 @@ warning (const char *format, ...)
 
    if (verboselevel == FIASCO_NO_VERBOSITY)
       return;
-	
+
    fprintf (stderr, "Warning: ");
    vfprintf (stderr, format, args);
    fputc ('\n', stderr);
@@ -214,7 +214,7 @@ warning (const char *format, ...)
    va_end (args);
 }
 
-void 
+void
 message (const char *format, ...)
 /*
  *  Print a message to stderr.
@@ -232,7 +232,7 @@ message (const char *format, ...)
    va_end (args);
 }
 
-void 
+void
 debug_message (const char *format, ...)
 /*
  *  Print a message to stderr.
@@ -280,3 +280,6 @@ fiasco_get_verbosity (void)
 {
    return verboselevel;
 }
+
+
+