]> git.imager.perl.org - imager.git/blobdiff - log.c
skip the right number of tests when gif not available
[imager.git] / log.c
diff --git a/log.c b/log.c
index 52f3939771f5a0f3306354f24d31697bf067c774..fb08ffd4a91afb10bfe48f80eff2952a21631d78 100644 (file)
--- a/log.c
+++ b/log.c
@@ -38,7 +38,7 @@ i_init_log(const char* name,int level) {
 }
 
 void
-m_fatal(int exitcode,const char *fmt, ... ) {
+i_fatal(int exitcode,const char *fmt, ... ) {
   va_list ap;
   time_t timi;
   struct tm *str_tm;
@@ -62,7 +62,7 @@ m_fatal(int exitcode,const char *fmt, ... ) {
  */
 
 void i_init_log(const char* name,int onoff) {}
-void m_fatal(int exitcode,const char *fmt, ... ) { exit(exitcode); }
+void i_fatal(int exitcode,const char *fmt, ... ) { exit(exitcode); }
 
 
 #endif