summaryrefslogtreecommitdiff
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorRandy Dunlap <rddunlap@osdl.org>2003-08-01 01:02:12 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2003-08-01 01:02:12 -0700
commitae87487b6cc7e0a0837a88305cbe3391b156d046 (patch)
tree88d00becf6e7fa2aa7287f176f600094363e961c /kernel/sysctl.c
parent53ef8f80eeb714a0c4f136295b983f58c350881e (diff)
[PATCH] janitor: don't init statics to 0
From: Leann Ogasawara <ogasawara@osdl.org> Uninitialize static variables initialized to 0 so they are pushed to the .bss instead of .data.
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 5a74e99e9db7..142ccfcf835b 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -585,7 +585,7 @@ static ctl_table kern_table[] = {
/* Constants for minimum and maximum testing in vm_table.
We use these as one-element integer vectors. */
-static int zero = 0;
+static int zero;
static int one_hundred = 100;