Found an error message that was using the old offset value; fixed to
authorDerrik Pates <demon@now.ai>
Thu, 19 May 2011 18:07:35 +0000 (12:07 -0600)
committerDerrik Pates <demon@now.ai>
Thu, 19 May 2011 18:07:35 +0000 (12:07 -0600)
use the new, correct one.

Fuse.xs

diff --git a/Fuse.xs b/Fuse.xs
index 8f7be78..ca931c8 100755 (executable)
--- a/Fuse.xs
+++ b/Fuse.xs
@@ -1643,7 +1643,7 @@ perl_fuse_main(...)
                } else if(SvOK(var)) {
                        croak("invalid callback (%i) passed to perl_fuse_main "
                              "(%s is not a string, code ref, or undef).\n",
-                             i+4,SvPVbyte_nolen(var));
+                             i+5,SvPVbyte_nolen(var));
                } else {
                        MY_CXT.callback[i] = NULL;
                }