diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | scripts/kconfig/gconf.c | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 1 | 1 | VERSION = 1 |
2 | PATCHLEVEL = 2 | 2 | PATCHLEVEL = 3 |
3 | SUBLEVEL = 2 | 3 | SUBLEVEL = 0 |
4 | EXTRAVERSION = .svn | 4 | EXTRAVERSION = |
5 | NAME = Unnamed | 5 | NAME = Unnamed |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 5aabcec23..566e35e5c 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c | |||
@@ -84,7 +84,7 @@ const char *dbg_print_stype(int val) | |||
84 | { | 84 | { |
85 | static char buf[256]; | 85 | static char buf[256]; |
86 | 86 | ||
87 | bzero(buf, 256); | 87 | memset(buf, 0, 256); |
88 | 88 | ||
89 | if (val == S_UNKNOWN) | 89 | if (val == S_UNKNOWN) |
90 | strcpy(buf, "unknown"); | 90 | strcpy(buf, "unknown"); |
@@ -112,7 +112,7 @@ const char *dbg_print_flags(int val) | |||
112 | { | 112 | { |
113 | static char buf[256]; | 113 | static char buf[256]; |
114 | 114 | ||
115 | bzero(buf, 256); | 115 | memset(buf, 0, 256); |
116 | 116 | ||
117 | if (val & SYMBOL_YES) | 117 | if (val & SYMBOL_YES) |
118 | strcat(buf, "yes/"); | 118 | strcat(buf, "yes/"); |
@@ -155,7 +155,7 @@ const char *dbg_print_ptype(int val) | |||
155 | { | 155 | { |
156 | static char buf[256]; | 156 | static char buf[256]; |
157 | 157 | ||
158 | bzero(buf, 256); | 158 | memset(buf, 0, 256); |
159 | 159 | ||
160 | if (val == P_UNKNOWN) | 160 | if (val == P_UNKNOWN) |
161 | strcpy(buf, "unknown"); | 161 | strcpy(buf, "unknown"); |
@@ -1188,7 +1188,7 @@ static gchar **fill_row(struct menu *menu) | |||
1188 | 1188 | ||
1189 | for (i = COL_OPTION; i <= COL_COLOR; i++) | 1189 | for (i = COL_OPTION; i <= COL_COLOR; i++) |
1190 | g_free(row[i]); | 1190 | g_free(row[i]); |
1191 | bzero(row, sizeof(row)); | 1191 | memset(row, 0, sizeof(row)); |
1192 | 1192 | ||
1193 | row[COL_OPTION] = | 1193 | row[COL_OPTION] = |
1194 | g_strdup_printf("%s %s", menu_get_prompt(menu), | 1194 | g_strdup_printf("%s %s", menu_get_prompt(menu), |