aboutsummaryrefslogtreecommitdiff
path: root/toys/other
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-11-17 14:00:21 -0600
committerRob Landley <rob@landley.net>2020-11-17 14:00:21 -0600
commit0ea04980e327efaf315a58408d926b674b55cb32 (patch)
treea7baa2beb688704a7aa65d4d89cb316944a3aedf /toys/other
parentb9181ee8936f23c35bd78e09942595bdcbaa6d14 (diff)
downloadtoybox-0ea04980e327efaf315a58408d926b674b55cb32.tar.gz
Fix printenv -0 (broken by the lib/args.c 0 prefix change).
Diffstat (limited to 'toys/other')
-rw-r--r--toys/other/printenv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/printenv.c b/toys/other/printenv.c
index 431bf1de..41cd0bd8 100644
--- a/toys/other/printenv.c
+++ b/toys/other/printenv.c
@@ -2,7 +2,7 @@
*
* Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>
-USE_PRINTENV(NEWTOY(printenv, "0(null)", TOYFLAG_BIN))
+USE_PRINTENV(NEWTOY(printenv, "(null)0", TOYFLAG_BIN))
config PRINTENV
bool "printenv"