Fix a couple of gcc4 warnings.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11904 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/register-rewrite
David Hampton 21 years ago
parent 7dee8e9032
commit 1d6c73d495

@ -1,3 +1,8 @@
2005-11-11 David Hampton <hampton@employees.org>
* lib/glib26/gkeyfile.c:
* lib/glib26/gutils26.c: Fix a couple of gcc4 warnings.
2005-11-10 David Hampton <hampton@employees.org>
* src/core-utils/gnc-gkeyfile-utils.[ch]:

@ -602,7 +602,7 @@ g_key_file_load_from_data_dirs (GKeyFile *key_file,
const gchar * user_data_dir;
const gchar * const * system_data_dirs;
gsize i, j;
gchar *output_path;
gchar *output_path = NULL;
gint fd;
gboolean found_file;

@ -751,10 +751,10 @@ _g_compute_locale_variants (const gchar *locale)
{
GSList *retval = NULL;
gchar *language;
gchar *territory;
gchar *codeset;
gchar *modifier;
gchar *language = NULL;
gchar *territory = NULL;
gchar *codeset = NULL;
gchar *modifier = NULL;
guint mask;
guint i;

Loading…
Cancel
Save