summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPirama Arumuga Nainar <pirama@google.com>2019-01-15 10:26:55 -0800
committerPirama Arumuga Nainar <pirama@google.com>2019-01-15 10:30:44 -0800
commitb758644974b808102d548bb8a6d350346fe8541e (patch)
tree4277d290328fc8e549441954171660add4da5bb7
parent2b4d64806cb46d6a11fe8f1ccb9a6e2df18cb435 (diff)
downloadandroid_system_keymaster-b758644974b808102d548bb8a6d350346fe8541e.tar.gz
android_system_keymaster-b758644974b808102d548bb8a6d350346fe8541e.tar.bz2
android_system_keymaster-b758644974b808102d548bb8a6d350346fe8541e.zip
Remove extraneous semicolon
Bug: http://b/122481018 Upcoming clang update has a warning, -Wextra-semi-stmt, that warns about extra semicolons. Remove extra semi-colon after a switch statement. Test: Build with new Clang. Change-Id: Id15fed5a81103b3139cfdf72b45f06590b0fa182
-rw-r--r--include/keymaster/android_keymaster_messages.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/keymaster/android_keymaster_messages.h b/include/keymaster/android_keymaster_messages.h
index 5f26023..5adf4c6 100644
--- a/include/keymaster/android_keymaster_messages.h
+++ b/include/keymaster/android_keymaster_messages.h
@@ -97,7 +97,7 @@ inline int32_t MessageVersion(uint8_t major_ver, uint8_t minor_ver, uint8_t /* s
case 2:
message_version = 3;
break;
- };
+ }
return message_version;
}