healthd: fix 64-bit build

int64_t needs to be printed with PRId64

Change-Id: If59b60bac71856e4266d459d159a570961e7340a
diff --git a/healthd/healthd_mode_charger.cpp b/healthd/healthd_mode_charger.cpp
index 43f6640..67d4944 100644
--- a/healthd/healthd_mode_charger.cpp
+++ b/healthd/healthd_mode_charger.cpp
@@ -360,7 +360,7 @@
         int batt_cap = get_battery_capacity();
 
         if (batt_cap < SCREEN_ON_BATTERY_THRESH) {
-            LOGV("[%lld] level %d, leave screen off\n", now, batt_cap);
+            LOGV("[%" PRId64 "] level %d, leave screen off\n", now, batt_cap);
             batt_anim->run = false;
             charger->next_screen_transition = -1;
             if (charger->charger_connected)