summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2015-04-15 09:45:21 -0500
committerGerrit Code Review2015-04-15 09:45:24 -0500
commit56c6575da72653c3ffd79baf1b431574d6f7e1ea (patch)
treedee8faa9813ad037bf482d372127bbd02cb091e0 /logd/LogStatistics.cpp
parent7369d314d255afc1df5f7cf343785cc942042852 (diff)
parente3aeeeeccc260c29ca5907a444f8d746bcc2f8a5 (diff)
downloadplatform-system-core-56c6575da72653c3ffd79baf1b431574d6f7e1ea.tar.gz
platform-system-core-56c6575da72653c3ffd79baf1b431574d6f7e1ea.tar.xz
platform-system-core-56c6575da72653c3ffd79baf1b431574d6f7e1ea.zip
Merge "logd: syscall optimization"
Diffstat (limited to 'logd/LogStatistics.cpp')
-rw-r--r--logd/LogStatistics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logd/LogStatistics.cpp b/logd/LogStatistics.cpp
index 77e388fef..0801fe8f7 100644
--- a/logd/LogStatistics.cpp
+++ b/logd/LogStatistics.cpp
@@ -437,7 +437,7 @@ uid_t pidToUid(pid_t pid) {
437 } 437 }
438 fclose(fp); 438 fclose(fp);
439 } 439 }
440 return getuid(); // associate this with the logger 440 return AID_LOGD; // associate this with the logger
441} 441}
442 442
443} 443}