summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2005-12-03 00:04:32 +0000
committerThomas Schwinge <tschwinge@gnu.org>2005-12-03 00:04:32 +0000
commitfa39bea5b895f8dc73d38b3952cfe1bf622fdce2 (patch)
treed5cff682b3f28f05bdd3784cfba5e5193eee9f08
parenta8d7588dafd44d95f10a1a4c6fd057d27f32aeeb (diff)
Remove superfluous semicolons.
-rw-r--r--fuse_i.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fuse_i.h b/fuse_i.h
index dfb380298..4cc5f4dc7 100644
--- a/fuse_i.h
+++ b/fuse_i.h
@@ -27,7 +27,7 @@
#define NOT_IMPLEMENTED() \
fprintf(stderr, PACKAGE ": functionality not yet implemented in " \
__FILE__ ":%d\nyou're welcome to put your effort to here.\n\n", \
- __LINE__);
+ __LINE__)
/* pointer to the fuse_operations structure of this translator process */
extern int fuse_use_ino;
@@ -108,7 +108,7 @@ extern FILE *debug_port;
#define DEBUG(cat,msg...) \
if(debug_port) \
- fprintf(debug_port, PACKAGE ": " cat ": " msg);
+ fprintf(debug_port, PACKAGE ": " cat ": " msg)
#define FUNC_PROLOGUE_(func_name, fmt...) \
do \
@@ -152,7 +152,7 @@ extern FILE *debug_port;
#define FUNC_EPILOGUE_(ret, fmt) \
FUNC_RETURN_(ret, fmt) \
- } while(0);
+ } while(0)
#define FUNC_RETURN_FMT(ret, fmt...) \
FUNC_RETURN_(ret, fprintf(debug_port, fmt))