Eliminate some compile warnings.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14867 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2006-09-19 03:15:21 +00:00
parent 64e0e791df
commit da75b9cde4

View File

@ -308,7 +308,7 @@ static void set_gerror (GError **error, GbrInitError errcode);
gboolean
gbr_init (GError **error)
{
GbrInitError errcode;
GbrInitError errcode = 0;
/* Locate the application's filename. */
exe = _br_find_exe (&errcode);
@ -336,7 +336,7 @@ gbr_init (GError **error)
gboolean
gbr_init_lib (GError **error)
{
GbrInitError errcode;
GbrInitError errcode = 0;
exe = _br_find_exe_for_symbol ((const void *) "", &errcode);
if (exe != NULL)