summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-03-14 13:23:19 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2023-03-14 19:44:46 -0600
commit59c432ca78d30193fca20f14280743cd430b7095 (patch)
treeb0e7636e9c1db5615b0f9b39c72627b58b697152
parent09677d5c56bbc6034d683de8977c94e4cb3a106c (diff)
cmd/btrfs-rec: inspect ls-files: Fix grammar in an error message
-rw-r--r--cmd/btrfs-rec/inspect_lsfiles.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/btrfs-rec/inspect_lsfiles.go b/cmd/btrfs-rec/inspect_lsfiles.go
index dacf214..7ecaaf0 100644
--- a/cmd/btrfs-rec/inspect_lsfiles.go
+++ b/cmd/btrfs-rec/inspect_lsfiles.go
@@ -215,7 +215,7 @@ func printDirEntry(out io.Writer, prefix string, isLast bool, subvol *btrfs.Subv
}
printPipe(out, prefix, isLast, name, file)
default:
- panic(fmt.Errorf("TODO: I don't know how to handle an fileType=%v: %q",
+ panic(fmt.Errorf("TODO: I don't know how to handle a fileType=%v: %q",
entry.Type, name))
}
}