diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applet_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c index 9f42ebf..c16df06 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c @@ -65,7 +65,7 @@ int main(int argc, char **argv) i = open(argv[1], O_WRONLY | O_TRUNC | O_CREAT, 0666); if (i < 0) return 1; - dup2(i, 1); + dup2(i, 1); /* Keep in sync with include/busybox.h! */ |