Use "se" instead of "f" for fuse_session pointer where possible.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 16:49:45 +0000 (09:49 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 16:49:45 +0000 (09:49 -0700)
commit29eacdbe4189598faa4f507b09aaab111a93650b
tree2a7f609afb5cd0b6cc3013a58e712b41e5d4f4a4
parentb69192b629a454f35eebe23d9ac4f8a5773170fd
Use "se" instead of "f" for fuse_session pointer where possible.

These changes were generated with the following Coccinelle semantic
patch:

@@
symbol f, se; // avoid unneeded warnings from Coccinelle
@@
struct fuse_session *
-f
+se
 ;
<...
-f
+se
...>

@@
identifier fn;
@@
fn(...,struct fuse_session *
-f
+se
,...) { <...
-f
+se
...> }
lib/fuse_lowlevel.c