Skip to content

Commit f5fec33

Browse files
committed
Fix mixed space/tab
1 parent 9fd1a0d commit f5fec33

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

fuseparts/_fusemodule.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,11 @@ releasedir_func(const char *path, struct fuse_file_info *fi)
407407
PROLOGUE(
408408
fi_to_py(fi) ?
409409
#ifdef FIX_PATH_DECODING
410-
PyObject_CallFunction(releasedir_cb, "O&N", &Path_AsDecodedUnicode, path,
410+
PyObject_CallFunction(releasedir_cb, "O&N", &Path_AsDecodedUnicode, path,
411411
fi_to_py(fi)) :
412412
PyObject_CallFunction(releasedir_cb, "O&", &Path_AsDecodedUnicode, path)
413413
#else
414-
PyObject_CallFunction(releasedir_cb, "sN", path,
414+
PyObject_CallFunction(releasedir_cb, "sN", path,
415415
fi_to_py(fi)) :
416416
PyObject_CallFunction(releasedir_cb, "s", path)
417417
#endif
@@ -1436,7 +1436,7 @@ Fuse_main(PyObject *self, PyObject *args, PyObject *kw)
14361436
return(NULL);
14371437
}
14381438

1439-
fargv = malloc(fargc * sizeof(char *));
1439+
fargv = malloc(fargc * sizeof(char *));
14401440
if (!fargv)
14411441
return(PyErr_NoMemory());
14421442
#ifdef FIX_PATH_DECODING

0 commit comments

Comments
 (0)