aboutsummaryrefslogtreecommitdiff
path: root/example/hello.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2012-05-16 17:31:33 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2012-05-16 17:31:33 +0200
commit46b9c3326d50aebe52c33d63885b83a47a2e74ea (patch)
treea7ba42dc27fbf35b59fb066a47bf8ef37c6464ba /example/hello.c
parent384496dd02cfd9a74b95d62ce0d23a31a7af3730 (diff)
Fix the compile command in the examples
Reported by Luciano Dalle Ore
Diffstat (limited to 'example/hello.c')
-rw-r--r--example/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/hello.c b/example/hello.c
index bcde80a..bcb6b4c 100644
--- a/example/hello.c
+++ b/example/hello.c
@@ -5,7 +5,7 @@
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
- gcc -Wall `pkg-config fuse --cflags --libs` hello.c -o hello
+ gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello
*/
#define FUSE_USE_VERSION 26