summaryrefslogtreecommitdiff
path: root/libs/utils/SystemClock.cpp
diff options
context:
space:
mode:
author Steve Block <steveblock@google.com> 2012-01-04 10:13:13 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2012-01-04 10:13:13 -0800
commit41891aeaf4e6e4006ae3087fa537786e9ec8caa4 (patch)
tree919fcb8f1583cb4357f16468b1fc6eaf1a5b0144 /libs/utils/SystemClock.cpp
parent7c48707a9d320230452d5937239f28ab0ea2e695 (diff)
parent5baa3a62a97544669fba6d65a11c07f252e654dd (diff)
Merge "Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE"
Diffstat (limited to 'libs/utils/SystemClock.cpp')
-rw-r--r--libs/utils/SystemClock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/utils/SystemClock.cpp b/libs/utils/SystemClock.cpp
index 062e6d76bfb8..89a052fb97a4 100644
--- a/libs/utils/SystemClock.cpp
+++ b/libs/utils/SystemClock.cpp
@@ -64,7 +64,7 @@ int setCurrentTimeMillis(int64_t millis)
tv.tv_sec = (time_t) (millis / 1000LL);
tv.tv_usec = (suseconds_t) ((millis % 1000LL) * 1000LL);
- LOGD("Setting time of day to sec=%d\n", (int) tv.tv_sec);
+ ALOGD("Setting time of day to sec=%d\n", (int) tv.tv_sec);
#ifdef HAVE_ANDROID_OS
fd = open("/dev/alarm", O_RDWR);