Commit 20a01b67 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed more build errors.

parent 9b9a86cf
......@@ -34,7 +34,7 @@ func kernelResponse(
// If the user replied with an error, create room enough just for the result
// header and fill it in with an error. Otherwise create an appropriate
// response.
var b *buffer.OutMessage
var b buffer.OutMessage
if opErr != nil {
b = buffer.NewOutMessage(0)
if errno, ok := opErr.(syscall.Errno); ok {
......@@ -60,7 +60,7 @@ func kernelResponse(
// op.
func kernelResponseForOp(
op fuseops.Op,
protocol fusekernel.Protocol) (b *buffer.OutMessage) {
protocol fusekernel.Protocol) (b buffer.OutMessage) {
// Create the appropriate output message
switch o := op.(type) {
case *fuseops.LookUpInodeOp:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment