From 373ca6f9ff7dfae4c43979debab8129dc86e04f3 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Mon, 12 May 2014 07:14:09 +0000 Subject: [PATCH] units(1): call el_end() Add missing el_end() call --- usr.bin/units/units.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/units/units.c b/usr.bin/units/units.c index c913f7cc1d8..bd484b2d9ed 100644 --- a/usr.bin/units/units.c +++ b/usr.bin/units/units.c @@ -810,5 +810,6 @@ main(int argc, char **argv) } history_end(inhistory); + el_end(el); return(0); }