diff options
Diffstat (limited to 'example')
-rwxr-xr-x | example/hello.c | 2 | ||||
-rwxr-xr-x | example/hello_ll.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/example/hello.c b/example/hello.c index c8b4a48..580bff2 100755 --- a/example/hello.c +++ b/example/hello.c @@ -10,7 +10,7 @@ * * hello.c - minimal FUSE example featuring fuse_main usage * -* \section section_compile compiling this example + * \section section_compile compiling this example * * gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello * diff --git a/example/hello_ll.c b/example/hello_ll.c index 687c6f1..06c881b 100755 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -180,7 +180,7 @@ static struct fuse_lowlevel_ops hello_ll_oper = { .read = hello_ll_read, }; -//! [doxygen_fuse_lowlevel_usage] +/*! [doxygen_fuse_lowlevel_usage] */ int main(int argc, char *argv[]) { struct fuse_args args = FUSE_ARGS_INIT(argc, argv); @@ -197,7 +197,7 @@ int main(int argc, char *argv[]) if (fuse_set_signal_handlers(se) != -1) { fuse_session_add_chan(se, ch); - // fuse_session_loop(..) blocks until ctrl+c or fusermount -u + /* fuse_session_loop(..) blocks until ctrl+c or fusermount -u */ err = fuse_session_loop(se); fuse_remove_signal_handlers(se); @@ -211,4 +211,4 @@ int main(int argc, char *argv[]) return err ? 1 : 0; } -//! [doxygen_fuse_lowlevel_usage] +/*! [doxygen_fuse_lowlevel_usage] */ |