Skip to content

Commit

Permalink
Adds requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-vish committed Jun 7, 2024
1 parent db07d56 commit 99921fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func describeRequest(op interface{}) (s string) {
addComponent("mode %d", typed.Mode)

case *fuseops.ReleaseFileHandleOp:
addComponent("Handle %d", typed.Handle)
addComponent("handle %d", typed.Handle)
}

// Use just the name if there is no extra info.
Expand Down Expand Up @@ -147,7 +147,7 @@ func describeResponse(op interface{}) string {

switch typed := op.(type) {
case *fuseops.OpenFileOp:
addComponent("Handle %d", typed.Handle)
addComponent("handle %d", typed.Handle)
}

return fmt.Sprintf("%s", strings.Join(components, ", "))
Expand Down

0 comments on commit 99921fc

Please sign in to comment.