Fix the type when converting set of everything to string.

This commit is contained in:
Bill Currie 2012-12-07 19:35:37 +09:00
parent c76231ca30
commit 39920a4ea7

View file

@ -566,7 +566,7 @@ set_as_string (const set_t *set)
return str->str;
}
if (set_is_everything (set)) {
dstring_copystr (str, "[everythign]");
dstring_copystr (str, "[everything]");
return str->str;
}
for (i = 0; i < set->size; i++) {