diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-10 20:10:03 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-10 20:10:03 +0000 |
commit | 7addabc5e7dab0b368d1c947b11fa56d30893575 (patch) | |
tree | bb88a740fada91285a02e768ba743c4c52e3ee84 /common/glib-helper.c | |
parent | b583273d911d67eb202f3f367f18d4460913ad41 (diff) |
list2string: use space as uuid separator
Diffstat (limited to 'common/glib-helper.c')
-rw-r--r-- | common/glib-helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/glib-helper.c b/common/glib-helper.c index 001bb4fc..bed506c3 100644 --- a/common/glib-helper.c +++ b/common/glib-helper.c @@ -268,8 +268,9 @@ gchar *bt_list2string(GSList *list) str = g_strdup((const gchar *) list->data); + /* FIXME: eglib doesn't support g_strconcat */ for (l = list->next; l; l = l->next) - str = g_strconcat(str, ", " , (const gchar *) l->data, NULL); + str = g_strconcat(str, " " , (const gchar *) l->data, NULL); return str; } |