diff options
-rw-r--r-- | TODO.org | 1 | ||||
-rw-r--r-- | src/b_unset.c | 4 |
2 files changed, 1 insertions, 4 deletions
@@ -30,7 +30,6 @@ ** TODO [#C] msh ~> ./qwe.sh <---- without shebang (maybe works fine already) ** TODO [#C] Fix ~ only first pos of arg ** TODO [#C] $1 $2 $3 $4... vars -** TODO [#C] unset PSx at boot ** DONE [#C] Fix $? * Stuff to add diff --git a/src/b_unset.c b/src/b_unset.c index 0df411a..116a1b3 100644 --- a/src/b_unset.c +++ b/src/b_unset.c @@ -102,9 +102,7 @@ static t_bool return (FALSE); } -static void - b_remove_it(const char arg[], - t_msh *msh) +static void b_remove_it(const char arg[], t_msh *msh) { if (b_removed_from_env(arg, msh) == FALSE) { |