Add missing NULL sentinel at end of g_strconcat() function call

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18824 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-03-04 21:39:47 +00:00
parent 5cedef8da8
commit 4ebca1d785

View File

@ -104,7 +104,7 @@ qof_win32_get_time_format(QofWin32Picture picture)
case QOF_WIN32_PICTURE_DATETIME:
tmp1 = get_win32_locale_string(LOCALE_SSHORTDATE);
tmp2 = get_win32_locale_string(LOCALE_STIMEFORMAT);
locale_string = g_strconcat(tmp1, " ", tmp2);
locale_string = g_strconcat(tmp1, " ", tmp2, NULL);
g_free(tmp1);
g_free(tmp2);
break;