Skip to content

Commit

Permalink
[dialog-doclink-utils.c] don't use g_strdelimit return val
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed May 13, 2021
1 parent 6dcf8f8 commit b42d2c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnucash/gnome-utils/dialog-doclink-utils.c
Expand Up @@ -92,7 +92,7 @@ gnc_doclink_get_unescape_uri (const gchar *path_head, const gchar *uri, gchar *u
g_free (file_path);

#ifdef G_OS_WIN32 // make path look like a traditional windows path
display_str = g_strdelimit (display_str, "/", '\\');
g_strdelimit (display_str, "/", '\\');
#endif
}
DEBUG("Return display string is '%s'", display_str);
Expand Down

0 comments on commit b42d2c4

Please sign in to comment.