From: Sharvil Nanavati Date: Tue, 15 Sep 2015 04:47:53 +0000 (-0700) Subject: Fix build: add LOG_TAG parameter to LOG_* macros. X-Git-Tag: android-x86-7.1-r1~522^2~119 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=adc96ae3997add59e76c5944dd5497de6eea00ca;p=android-x86%2Fsystem-bt.git Fix build: add LOG_TAG parameter to LOG_* macros. Change-Id: I455fdde6264cd17cd2b73dbd1f70c68e7d632ec7 --- diff --git a/osi/src/alarm.c b/osi/src/alarm.c index 022c64879..d8691be54 100644 --- a/osi/src/alarm.c +++ b/osi/src/alarm.c @@ -463,7 +463,7 @@ static bool timer_create_internal(const clockid_t clock_id, timer_t *timer) { sigevent.sigev_notify = SIGEV_THREAD; sigevent.sigev_notify_function = (void (*)(union sigval))timer_callback; if (timer_create(clock_id, &sigevent, timer) == -1) { - LOG_ERROR("%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); + LOG_ERROR(LOG_TAG, "%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); return false; }