From a8036d3201c48c3960c7f06baa26ac68e9fbac9d Mon Sep 17 00:00:00 2001 From: Derrik Pates Date: Thu, 19 May 2011 12:07:35 -0600 Subject: [PATCH] Found an error message that was using the old offset value; fixed to use the new, correct one. --- Fuse.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fuse.xs b/Fuse.xs index 8f7be78..ca931c8 100755 --- 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; } -- 2.20.1