Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2daa519f authored by Sharvil Nanavati's avatar Sharvil Nanavati
Browse files

Fix build: add LOG_TAG parameter to LOG_* macros.

Change-Id: I455fdde6264cd17cd2b73dbd1f70c68e7d632ec7
parent 0f614ea3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }