diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-12-03 13:24:35 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-12-03 13:24:35 +0000 |
commit | aa63b6b0f9d2c2e160554b788b000c5bc6f52309 (patch) | |
tree | d2d936b124a11d847815111e9d9e37fac33d7395 /kernel/util.c | |
parent | 5c7e63e47c9bc1aa45797b989d788419bf59f115 (diff) | |
download | libfuse-aa63b6b0f9d2c2e160554b788b000c5bc6f52309.tar.gz |
cleanup
Diffstat (limited to 'kernel/util.c')
-rw-r--r-- | kernel/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/util.c b/kernel/util.c index 003f8b2..8dca167 100644 --- a/kernel/util.c +++ b/kernel/util.c @@ -33,11 +33,11 @@ int __init fuse_init(void) res = fuse_fs_init(); if (res) goto err; - + res = fuse_dev_init(); if (res) goto err_fs_cleanup; - + return 0; err_fs_cleanup: @@ -49,7 +49,7 @@ int __init fuse_init(void) void __exit fuse_exit(void) { printk(KERN_DEBUG "fuse exit\n"); - + fuse_fs_cleanup(); fuse_dev_cleanup(); } |