From f9408faf1b437a34af1e0e4ed464a7a5a181ddf8 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Thu, 22 Apr 2010 12:04:43 -0700 Subject: [PATCH] minor coding style cleanup. Signed-off-by: Greg Kroah-Hartman --- bti.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bti.c b/bti.c index c0c5804..201d56f 100644 --- a/bti.c +++ b/bti.c @@ -190,7 +190,8 @@ static void session_readline_init(struct session *session) *next++ = 0; if (*cp == 0) continue; - if ((handle = dlopen(cp, RTLD_NOW))) { + handle = dlopen(cp, RTLD_NOW); + if (handle) { dbg("Using %s for readline library\n", cp); break; } -- 2.39.5