diff options
author | 2023-10-05 18:15:40 +0000 | |
---|---|---|
committer | 2023-10-06 16:32:41 +0000 | |
commit | 5d7b4cacb34e567353be72fe9d0d293001e62deb (patch) | |
tree | 600e0342ec88e0769f8fb40599e2a439cdc4e2e3 /libs/binder/Stability.cpp | |
parent | 8b919d0eb0e816bdd67f11855e649ce3723930ee (diff) |
Fix warning about missing terminating ' character
Bug: 302724232
Test: build binder with GCC
Change-Id: I5bb7cff8999f6fb6f2411eb8697a79c979d12103
Diffstat (limited to 'libs/binder/Stability.cpp')
-rw-r--r-- | libs/binder/Stability.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Stability.cpp b/libs/binder/Stability.cpp index 2d05fb2505..c432b3af29 100644 --- a/libs/binder/Stability.cpp +++ b/libs/binder/Stability.cpp @@ -75,7 +75,7 @@ void Stability::tryMarkCompilationUnit(IBinder* binder) { Stability::Level Stability::getLocalLevel() { #ifdef __ANDROID_APEX__ -#error APEX can't use libbinder (must use libbinder_ndk) +#error "APEX can't use libbinder (must use libbinder_ndk)" #endif #ifdef __ANDROID_VNDK__ |