diff options
| author | 2023-10-06 18:32:18 +0000 | |
|---|---|---|
| committer | 2023-10-06 18:32:18 +0000 | |
| commit | 95cf533fed7e085d6c5daf6dab63b68c154505a1 (patch) | |
| tree | bf4e037ea1b6db2cceabeda0340c59ad0fd65b3a | |
| parent | 8e2330d9b842e76320734ba20abbce914d097555 (diff) | |
| parent | 3747b573eb9577e7ca1f8960a120bc6e3499ca41 (diff) | |
Merge "Fix warning about missing terminating ' character" into main am: 3a0a27af82 am: 3747b573eb
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2775967
Change-Id: Ie60f0881e073a15a750e2d59119eabb5707f4619
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -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__ |