]> git.hungrycats.org Git - linux/commitdiff
[PATCH] namespace pollution in 'backpack' paride
authorRusty Russell <rusty@rustcorp.com.au>
Mon, 13 Jan 2003 12:13:36 +0000 (04:13 -0800)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Mon, 13 Jan 2003 12:13:36 +0000 (04:13 -0800)
From:  Arnd Bergmann <arnd@bergmann-dalldorf.de>

  A global variable should not be called 'verbose'. It can
  be made static since it is only used in one file.

drivers/block/paride/bpck6.c

index d1291949aa9175b19ebffba4db4ba4d5d65eae8b..68ded568c3aee8792d0987c0696ee3374ea3c53b 100644 (file)
@@ -21,7 +21,7 @@
 
 
 /* PARAMETERS */
-int verbose=0; /* set this to 1 to see debugging messages and whatnot */
+static int verbose; /* set this to 1 to see debugging messages and whatnot */
 
 #define BACKPACK_VERSION "2.0.2"