From c26c14d8db2072ca1ddc9f9f3133edb3f1c564aa Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 9 Apr 2004 17:48:32 +0000 Subject: limit checking --- kernel/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/util.c') diff --git a/kernel/util.c b/kernel/util.c index 6764157..faffb08 100644 --- a/kernel/util.c +++ b/kernel/util.c @@ -22,7 +22,7 @@ spinlock_t fuse_lock = SPIN_LOCK_UNLOCKED; /* Must be called with the fuse lock held */ void fuse_release_conn(struct fuse_conn *fc) { - if(fc->sb == NULL && fc->file == NULL) { + if (fc->sb == NULL && fc->file == NULL) { kfree(fc); } } @@ -36,11 +36,11 @@ int __init fuse_init(void) FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION); res = fuse_fs_init(); - if(res) + if (res) goto err; res = fuse_dev_init(); - if(res) + if (res) goto err_fs_cleanup; return 0; -- cgit v1.2.3