Add missing NULL to g_strconcat() call

This commit is contained in:
Tor Lillqvist
2009-10-07 22:31:55 +03:00
parent dd0575edb4
commit cb4c374edd

View File

@ -631,7 +631,7 @@ maybe_append_exe (const gchar *what)
gchar *p = strrchr (what, '.');
if (p == NULL || g_ascii_strcasecmp (p, ".exe") != 0)
return g_strconcat (what, ".exe");
return g_strconcat (what, ".exe", NULL);
#endif
return what;