Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Unified Diff: tests/tpm_lite/writelimit.c

Issue 6893071: Fix missing break in switch statement. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: fix Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/tpm_lite/writelimit.c
diff --git a/tests/tpm_lite/writelimit.c b/tests/tpm_lite/writelimit.c
index 722e627ca0a666852753bcbf700dd9f080264082..07f5448306718978bb70bf82a0702d5a89b00c73 100644
--- a/tests/tpm_lite/writelimit.c
+++ b/tests/tpm_lite/writelimit.c
@@ -36,6 +36,7 @@ int main(int argc, char** argv) {
switch (result) {
case TPM_E_MAXNVWRITES:
assert(i >= TPM_MAX_NV_WRITES_NOOWNER);
+ break;
default:
error("unexpected error code %d (0x%x)\n", result, result);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698