diff options
author | Rob Landley <rob@landley.net> | 2020-11-17 14:00:21 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-11-17 14:00:21 -0600 |
commit | 0ea04980e327efaf315a58408d926b674b55cb32 (patch) | |
tree | a7baa2beb688704a7aa65d4d89cb316944a3aedf /toys | |
parent | b9181ee8936f23c35bd78e09942595bdcbaa6d14 (diff) | |
download | toybox-0ea04980e327efaf315a58408d926b674b55cb32.tar.gz |
Fix printenv -0 (broken by the lib/args.c 0 prefix change).
Diffstat (limited to 'toys')
-rw-r--r-- | toys/other/printenv.c | 2 |
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" |