summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rwxr-xr-xsrc/utils/dictionary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/dictionary.c b/src/utils/dictionary.c
index b97ccaa..68ba04b 100755
--- a/src/utils/dictionary.c
+++ b/src/utils/dictionary.c
@@ -280,7 +280,7 @@ void parse_str(struct dictionary * d, char * str, int blank_space) {
}
if (c == '\0') break;
c = *++str;
- while (c != ' ' && c != '\0') {
+ while (c != '\0') {
if (blank_space && c == ' ') break;
add_char(value, c, strlen(value));
c = *++str;