Remove superfluous messages from the log.

These are already sent to the log when the functions return.

Change-Id: I839b64f6b2e63f62e11f6a40eaf7fedd48c293d8
This commit is contained in:
Ian Macdonald
2020-11-02 08:51:08 +01:00
committed by bigbiff
parent d9e6671e96
commit eb4d8b8818

View File

@@ -46,7 +46,6 @@ static std::string get_misc_blk_device(std::string* err) {
}
Fstab fstab;
if (!ReadDefaultFstab(&fstab)) {
printf("failed to read default fstab\n");
*err = "failed to read default fstab";
return "";
}
@@ -57,7 +56,6 @@ static std::string get_misc_blk_device(std::string* err) {
}
*err = "failed to find /misc partition";
printf("failed to find misc partition\n");
return "";
}