From 20a01b67ef9abc7d981875217db9f09bc5b402c2 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 27 Jul 2015 15:34:14 +1000 Subject: [PATCH] Fixed more build errors. --- ops.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ops.go b/ops.go index e6fcf75..9bf884a 100644 --- a/ops.go +++ b/ops.go @@ -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: