diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-11-06 15:07:17 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-11-06 15:07:17 +0000 |
commit | 2df1c04f30802df9a23a19e22042884430c429d2 (patch) | |
tree | b1175acab6d7d4673b5d59f9d3b6e7c49532f195 /kernel/util.c | |
parent | 21ed360572b816a11e7a37824907105882686446 (diff) | |
download | libfuse-2df1c04f30802df9a23a19e22042884430c429d2.tar.gz |
cleanups
Diffstat (limited to 'kernel/util.c')
-rw-r--r-- | kernel/util.c | 4 |
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) |