From 6b3beb709dcb7a84ccf0750d50bbc33260e50a71 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 21 Jun 2022 12:21:02 -0700 Subject: [PATCH] fix format --- weed/mount/inode_to_path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/mount/inode_to_path.go b/weed/mount/inode_to_path.go index 64cabfaf5..fa17a9261 100644 --- a/weed/mount/inode_to_path.go +++ b/weed/mount/inode_to_path.go @@ -176,7 +176,7 @@ func (i *InodeToPath) MovePath(sourcePath, targetPath util.FullPath) (replacedIn entry.nlookup++ } } else { - glog.Errorf("MovePath %s to %s: sourceInode %s not found", sourcePath, targetPath, sourceInode) + glog.Errorf("MovePath %s to %s: sourceInode %d not found", sourcePath, targetPath, sourceInode) } return targetInode }