fstrim: fix typo in log message for FIDTRIM case

Bug: 15593563
Change-Id: I2b5fbbfb694e1b87de6c14ab63f1a5f803bbbc36
gugelfrei
JP Abgrall 10 years ago
parent 6bfed20c77
commit 55cdafdf27

@ -113,7 +113,7 @@ static void *do_fstrim_filesystems(void *thread_arg)
}
#endif
if (ret) {
SLOGE("FIDTRIM ioctl failed on %s (error %d/%s)", fstab->recs[i].mount_point, errno, strerror(errno));
SLOGE("%s ioctl failed on %s (error %d/%s)", deep_trim ? "FIDTRIM" : "FITRIM", fstab->recs[i].mount_point, errno, strerror(errno));
ret = -1;
} else {
SLOGI("Trimmed %llu bytes on %s\n", range.len, fstab->recs[i].mount_point);

Loading…
Cancel
Save