aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2022-04-12 12:02:31 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2022-04-12 12:02:31 -0400
commit331715c7811bdbad52348822a9ff25baa488cbde (patch)
treedc1d75ae211d071ba124a0eb39eb949feadd2b79
parent1dbffa50946ebd88f69d8a4c89bf62b94540c529 (diff)
downloadcleanpath-331715c7811bdbad52348822a9ff25baa488cbde.tar.gz
Fix space in delimiter string
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 5e1597b..98c3529 100644
--- a/src/main.c
+++ b/src/main.c
@@ -245,7 +245,7 @@ int main(int argc, char *argv[], char *arge[]) {
char sh_set[10];
char sh_unset[10];
- strcpy(sh_set_delim, "= ");
+ strcpy(sh_set_delim, "=");
strcpy(sh_set, "");
strcpy(sh_unset, "unset");