summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-03-06 21:24:54 +0100
committerDees Troy <dees_troy@teamw.in>2014-03-06 21:24:54 +0100
commit3e254b9c894caf3fef313671aedd9f37ee01b500 (patch)
tree8e2e40b72547549ac44e1361d4b1d3aa11e0df4b
parentMerge "Restore capabilities to run-as binary" into android-4.4 (diff)
downloadandroid_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar.gz
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar.bz2
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar.lz
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar.xz
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.tar.zst
android_bootable_recovery-3e254b9c894caf3fef313671aedd9f37ee01b500.zip
-rw-r--r--twrp-functions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp
index bce65f0ed..c50290df4 100644
--- a/twrp-functions.cpp
+++ b/twrp-functions.cpp
@@ -1081,20 +1081,20 @@ void TWFunc::Fixup_Time_On_Boot()
if(ats_path.empty())
{
- LOGERR("TWFunc::Fixup_Time: no ats files found, leaving time as-is!\n");
+ LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving time as-is!\n");
return;
}
f = fopen(ats_path.c_str(), "r");
if(!f)
{
- LOGERR("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
+ LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
return;
}
if(fread(&offset, sizeof(offset), 1, f) != 1)
{
- LOGERR("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
+ LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
fclose(f);
return;
}