Mass fix of Infof and co. missing the trailing "f", even when formatting placeholders are used

This commit is contained in:
Rudi Chiarito
2016-01-29 14:35:04 -05:00
parent fc2929ed05
commit a0831a2378
8 changed files with 9 additions and 9 deletions

View File

@@ -46,7 +46,7 @@ func (m *realMountDetector) GetMountMedium(path string) (storageMedium, bool, er
return 0, false, fmt.Errorf("statfs(%q): %v", path, err)
}
glog.V(5).Info("Statfs_t of %v: %+v", path, buf)
glog.V(5).Infof("Statfs_t of %v: %+v", path, buf)
if buf.Type == linuxTmpfsMagic {
return mediumMemory, !notMnt, nil
}