@Keuronde commented on this pull request.
I didn't find a better way...
> {
geany_debug("Relative path %s, root folder %s",
locale_filename, root_folder);
gchar *absolute_path;
- absolute_path = g_strconcat(root_folder, &(locale_filename[1]),
NULL);
+ absolute_path = g_strconcat(root_folder, "/", locale_filename,
NULL);
Is there a better way to add a "path separator" than using "/" ? I didn't find
any constant in the glib...
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2667#pullrequestreview-535727287