From 9aeecd9832a8479a65d9b8cc013917ee62961e1f Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 30 May 2008 18:09:13 +0200 Subject: [PATCH] Check the return value of print_statistics(). It may fail. --- adu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adu.c b/adu.c index b025e2f..7c6ba6f 100644 --- a/adu.c +++ b/adu.c @@ -972,9 +972,9 @@ static int com_select(void) ret = read_uid_file(); if (ret < 0) return ret; - print_statistics(); + ret = print_statistics(); close_all_tables(); - return 1; + return ret; } static int check_args(void) -- 2.39.2