diff options
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 5a38b9559a..5951a3ff47 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -362,12 +362,12 @@ status_t IPCThreadState::clearLastError() return err; } -int IPCThreadState::getCallingPid() +int IPCThreadState::getCallingPid() const { return mCallingPid; } -int IPCThreadState::getCallingUid() +int IPCThreadState::getCallingUid() const { return mCallingUid; } |