diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2005-12-03 00:04:32 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2005-12-03 00:04:32 +0000 |
commit | fa39bea5b895f8dc73d38b3952cfe1bf622fdce2 (patch) | |
tree | d5cff682b3f28f05bdd3784cfba5e5193eee9f08 | |
parent | a8d7588dafd44d95f10a1a4c6fd057d27f32aeeb (diff) |
Remove superfluous semicolons.
-rw-r--r-- | fuse_i.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)) |