Skip to content

Commit

Permalink
fuse: fix filename debug print
Browse files Browse the repository at this point in the history
Change-Id: Ib2b95a3a7e155ffad484bb6120a84d7751b79e5b
  • Loading branch information
hanwen committed Nov 3, 2024
1 parent c01ea73 commit 1333664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuse/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ func (r *request) InputDebug() string {

names := ""
if h.FileNames == 1 {
names = fmt.Sprintf("%q", r.filename())
names = fmt.Sprintf(" %q", r.filename())
} else if h.FileNames == 2 {
n1, n2 := r.filenames()
names = fmt.Sprintf("%q %q", n1, n2)
names = fmt.Sprintf(" %q %q", n1, n2)
} else if l := len(r.inPayload); l > 0 {
dots := ""
if l > 8 {
Expand Down

0 comments on commit 1333664

Please sign in to comment.