remove stray 'x' so print_err will compile when uncommented

This commit is contained in:
Patrick Pelletier 2012-11-07 19:48:22 -08:00 committed by Nick Mathewson
parent f3009e48c7
commit ac356502d3

View File

@ -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);