aboutsummaryrefslogtreecommitdiff
path: root/kernel/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/util.c')
-rw-r--r--kernel/util.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/util.c b/kernel/util.c
index 57b1a90..9b7bec1 100644
--- a/kernel/util.c
+++ b/kernel/util.c
@@ -12,8 +12,6 @@
#include <linux/kernel.h>
#include <linux/slab.h>
-#define FUSE_VERSION "0.1"
-
spinlock_t fuse_lock = SPIN_LOCK_UNLOCKED;
/* Must be called with the fuse lock held */
@@ -28,7 +26,7 @@ int init_module(void)
{
int res;
- printk(KERN_DEBUG "fuse init (version %s)\n", FUSE_VERSION);
+ printk(KERN_DEBUG "fuse init (version %i)\n", FUSE_KERNEL_VERSION);
res = fuse_fs_init();
if(res)