Skip to content

Commit

Permalink
minor coding style cleanup.
Browse files Browse the repository at this point in the history
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
gregkh committed Apr 22, 2010
1 parent 82745b5 commit f9408fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bti.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f9408fa

Please sign in to comment.