<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
From: Miklos Szeredi &lt;miklos@szeredi.hu&gt;

This patch fixes a variable name that looks like it's shadowing a function
(spotted by Michael Waychison).

Signed-off-by: Miklos Szeredi &lt;miklos@szeredi.hu&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
---

 25-akpm/fs/fuse/dev.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff -puN fs/fuse/dev.c~fuse-fix-variable-with-confusing-name fs/fuse/dev.c
--- 25/fs/fuse/dev.c~fuse-fix-variable-with-confusing-name	Fri Jan 14 15:09:45 2005
+++ 25-akpm/fs/fuse/dev.c	Fri Jan 14 15:10:37 2005
@@ -53,10 +53,10 @@ void fuse_request_free(struct fuse_req *
 
 static inline void block_sigs(sigset_t *oldset)
 {
-	sigset_t sigmask;
+	sigset_t mask;
 
-	siginitsetinv(&amp;sigmask, sigmask(SIGKILL));
-	sigprocmask(SIG_BLOCK, &amp;sigmask, oldset);
+	siginitsetinv(&amp;mask, sigmask(SIGKILL));
+	sigprocmask(SIG_BLOCK, &amp;mask, oldset);
 }
 
 static inline void restore_sigs(sigset_t *oldset)
_
</pre></body></html>