From 68698b4e64831d2fdf762b5f8577ff404f10a3cb Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 4 Mar 2013 13:06:05 +0100 Subject: [PATCH] tdb: Slightly simplify tdb_expand_file The "else" keywords are not necessary here, we return in the preceding if clause Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Tue Mar 5 14:00:47 CET 2013 on sn-devel-104 --- lib/tdb/common/io.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/tdb/common/io.c b/lib/tdb/common/io.c index 0563635e6f0..b9caffb1e55 100644 --- a/lib/tdb/common/io.c +++ b/lib/tdb/common/io.c @@ -328,12 +328,14 @@ static int tdb_expand_file(struct tdb_context *tdb, tdb_off_t size, tdb_off_t ad "returned 0 twice: giving up!\n")); errno = ENOSPC; return -1; - } else if (written == -1) { + } + if (written == -1) { TDB_LOG((tdb, TDB_DEBUG_FATAL, "expand_file write of " "%d bytes failed (%s)\n", (int)n, strerror(errno))); return -1; - } else if (written != n) { + } + if (written != n) { TDB_LOG((tdb, TDB_DEBUG_WARNING, "expand_file: wrote " "only %d of %d bytes - retrying\n", (int)written, (int)n)); -- 2.11.4.GIT