Skip to content

Commit

Permalink
Remove extra bang
Browse files Browse the repository at this point in the history
A bang (!) slipped through in the recent UI cleanup

Reviewed-by: Rich Salz <[email protected]>
(Merged from openssl#2051)
(cherry picked from commit 949320c)
  • Loading branch information
levitte committed Dec 8, 2016
1 parent 59ba83c commit 5ae285e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ui/ui_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ int UI_process(UI *ui)
}
err:
if (ui->meth->ui_close_session != NULL
&& !ui->meth->ui_close_session(ui) <= 0)
&& ui->meth->ui_close_session(ui) <= 0)
return -1;
return ok;
}
Expand Down

0 comments on commit 5ae285e

Please sign in to comment.