* crypto/ui/ui_lib.c: misplaced brace in switch statement.

Detected by dcruette@qualitesys.com

(cherry picked from commit 8b5dd340919e511137696792279f595a70ae2762)
This commit is contained in:
Richard Levitte 2014-07-13 19:11:29 +02:00
parent 5e189b4b8d
commit 5b9188454b

View File

@ -916,9 +916,9 @@ int UI_set_result(UI *ui, UI_STRING *uis, const char *result)
break;
}
}
}
default:
break;
}
}
return 0;
}