aboutsummaryrefslogtreecommitdiff
path: root/liberty-tui.c
diff options
context:
space:
mode:
Diffstat (limited to 'liberty-tui.c')
-rw-r--r--liberty-tui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/liberty-tui.c b/liberty-tui.c
index c6e70e9..4d48c2a 100644
--- a/liberty-tui.c
+++ b/liberty-tui.c
@@ -62,8 +62,8 @@ struct attrs
static struct attrs
attrs_decode (const char *value)
{
- struct str_vector v;
- str_vector_init (&v);
+ struct strv v;
+ strv_init (&v);
cstr_split (value, " ", true, &v);
int colors = 0;
@@ -87,7 +87,7 @@ attrs_decode (const char *value)
else if (!strcmp (*it, "italic")) attrs.attrs |= A_ITALIC;
#endif // A_ITALIC
}
- str_vector_free (&v);
+ strv_free (&v);
return attrs;
}