diff options
author | Guillem Jover <guillem@debian.org> | 2008-08-27 00:05:29 +0300 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2008-09-14 04:59:31 +0300 |
commit | c47003c7b240b4f295e4555794835e6a0aeddfe0 (patch) | |
tree | 4d48b39e1a7a56bfb204ca031aadf2e6d0f1918f /lib | |
parent | e25f2574fd6c30bfaa0902e7b0d818f0b1b2f46c (diff) | |
download | dpkg-c47003c7b240b4f295e4555794835e6a0aeddfe0.tar.gz |
libdpkg: Do not pass any argument to standard_shutdown
Diffstat (limited to 'lib')
-rw-r--r-- | lib/dpkg.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/dpkg.h b/lib/dpkg.h index ecb2ddcb5..ab9ed22e0 100644 --- a/lib/dpkg.h +++ b/lib/dpkg.h @@ -165,11 +165,9 @@ extern const char printforhelp[]; myopt(argv,cmdinfos);\ } while (0) -#define standard_shutdown(freemem) do {\ +#define standard_shutdown() do { \ set_error_display(NULL, NULL); \ error_unwind(ehflag_normaltidy);\ - if (freemem)\ - nffreeall();\ } while (0) /*** from ehandle.c ***/ |