diff options
| author | 2018-10-25 16:22:26 -0700 | |
|---|---|---|
| committer | 2018-10-25 16:22:26 -0700 | |
| commit | a7a047cabd11282e6b2d95e329cdbec45a410bf4 (patch) | |
| tree | fe89d20a3b60be717a80c1da93715ab6d66fa5a0 | |
| parent | 369e0148fa7d9ee258ab19e912798f98f4456dde (diff) | |
InputFlinger: fix a typo in dump error log
Test: Build
Change-Id: Ic7c8a8c35a0895b77ba910802ddbce311a3bc6a9
| -rw-r--r-- | services/inputflinger/host/InputFlinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/inputflinger/host/InputFlinger.cpp b/services/inputflinger/host/InputFlinger.cpp index f1d3726da2..2da2a70c03 100644 --- a/services/inputflinger/host/InputFlinger.cpp +++ b/services/inputflinger/host/InputFlinger.cpp @@ -53,7 +53,7 @@ status_t InputFlinger::dump(int fd, const Vector<String16>& args) { if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDumpPermission, pid, uid)) { result.appendFormat("Permission Denial: " - "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid); + "can't dump InputFlinger from pid=%d, uid=%d\n", pid, uid); } else { dumpInternal(result); } |