Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ps.c
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-07-14 19:55:41 +0400
committerPavel Roskin <proski@gnu.org>2000-07-14 19:55:41 +0400
commitf626dcbc8418819f532d9af7858adad2a4dd2606 (patch)
treeedd0253132eaecb7f7caf8877c1db5bfa26c47c0 /ps.c
parent9027bcf2f4b8c9352183544d3fcc35d12b9affec (diff)
More fixes for "missing initializers"
Diffstat (limited to 'ps.c')
-rw-r--r--ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ps.c b/ps.c
index 99c9edaf7..b070e3984 100644
--- a/ps.c
+++ b/ps.c
@@ -216,7 +216,7 @@ extern int ps_main(int argc, char **argv)
char uidName[10] = "";
char groupName[10] = "";
#ifdef BB_FEATURE_AUTOWIDTH
- struct winsize win = { 0, 0 };
+ struct winsize win = { 0, 0, 0, 0 };
int terminal_width = TERMINAL_WIDTH;
#else
#define terminal_width TERMINAL_WIDTH