Skip to content

Commit

Permalink
fuse: fix compile error
Browse files Browse the repository at this point in the history
I forgot to squash this into the uploaded change

Change-Id: Ic2308450cb9c22652573cd21e86b9b02bf59d6f7
  • Loading branch information
hanwen committed Dec 2, 2024
1 parent 98027c7 commit decc0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuse/opcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func doInit(server *protocolServer, req *request) {
CongestionThreshold: uint16(server.opts.MaxBackground * 3 / 4),
MaxBackground: uint16(server.opts.MaxBackground),
MaxPages: uint16(maxPages),
MaxStackDepth: server.opts.MaxStackDepth,
MaxStackDepth: uint32(server.opts.MaxStackDepth),
}
out.setFlags(kernelFlags)
if server.opts.MaxReadAhead != 0 && uint32(server.opts.MaxReadAhead) < out.MaxReadAhead {
Expand Down

0 comments on commit decc0e3

Please sign in to comment.