From: Ken Hornstein Date: Fri, 16 Nov 2012 02:47:36 +0000 (-0500) Subject: Fix missing argument to fmt_free(). X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=a1da5322b88c7ed8c524f6b4130a9a9120ec4cd9 Fix missing argument to fmt_free(). --- diff --git a/uip/fmtdump.c b/uip/fmtdump.c index eb5608e..2ec0a80 100644 --- a/uip/fmtdump.c +++ b/uip/fmtdump.c @@ -104,7 +104,7 @@ main (int argc, char **argv) fmt_dump(fmt); - fmt_free(fmt); + fmt_free(fmt, 1); done(0); return 1;