From a3e2e1fca1bf47532eb73523a369dccb08f18c60 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Sun, 8 Mar 2015 17:13:43 -0500 Subject: [PATCH] Added EINVAL. --- errors.go | 1 + 1 file changed, 1 insertion(+) diff --git a/errors.go b/errors.go index 24ebc37..044edd6 100644 --- a/errors.go +++ b/errors.go @@ -23,6 +23,7 @@ import ( const ( // Errors corresponding to kernel error numbers. These may be treated // specially when returned by a FileSystem method. + EINVAL = bazilfuse.Errno(syscall.EINVAL) EIO = bazilfuse.EIO ENOENT = bazilfuse.ENOENT ENOSYS = bazilfuse.ENOSYS