diff options
author | Rob Landley <rob@landley.net> | 2007-01-31 14:37:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-31 14:37:01 -0500 |
commit | de05a7024f4be6826d05c40aa029fe2bbf6d2818 (patch) | |
tree | d4e96051360dd047d2fccbc6b4b1e6773b2c2199 /toys/which.c | |
parent | bcfad872188d993efc8d1da4b79058b69e43f019 (diff) | |
download | toybox-de05a7024f4be6826d05c40aa029fe2bbf6d2818.tar.gz |
Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_.
Diffstat (limited to 'toys/which.c')
-rw-r--r-- | toys/which.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/which.c b/toys/which.c index 16e19d00..df7566c0 100644 --- a/toys/which.c +++ b/toys/which.c @@ -61,7 +61,7 @@ int which_main(void) int i; for (i=0; toys.optargs[i]; i++) rc |= which_in_path(toys.optargs[i]); } - // if (CFG_TOYS_FREE) free(argv); + // if (CFG_TOYBOX_FREE) free(argv); return rc; } |