Skip to content

Commit

Permalink
remove stray 'x' so print_err will compile when uncommented
Browse files Browse the repository at this point in the history
  • Loading branch information
mignon-p authored and nmathewson committed Nov 16, 2012
1 parent f3009e4 commit ac35650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bufferevent_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ print_err(int val)
int err;
printf("Error was %d\n", val);

while ((err = ERR_get_error()))x {
while ((err = ERR_get_error())) {
const char *msg = (const char*)ERR_reason_error_string(err);
const char *lib = (const char*)ERR_lib_error_string(err);
const char *func = (const char*)ERR_func_error_string(err);
Expand Down

0 comments on commit ac35650

Please sign in to comment.