From: Jonathan Pryor <jonpryor@vt.edu>
Date: Wed, 30 Dec 2009 17:39:29 +0100
Subject: [PATCH] fix build
---
example/HelloFS/HelloFS.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/example/HelloFS/HelloFS.cs b/example/HelloFS/HelloFS.cs
index 4df38e1..401e0ab 100644
--- a/example/HelloFS/HelloFS.cs
+++ b/example/HelloFS/HelloFS.cs
@@ -58,7 +58,7 @@ namespace Mono.Fuse.Samples {
hello_attrs ["foo"] = Encoding.UTF8.GetBytes ("bar");
}
- protected override Errno OnGetPathStatus (string path, ref Stat stbuf)
+ protected override Errno OnGetPathStatus (string path, out Stat stbuf)
{
Trace.WriteLine ("(OnGetPathStatus {0})", path);
--