2001-05-13 Dave Peticolas <dave@krondo.com>

* src/engine/Account.c (finder_help_function): fix warning


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4178 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-05-13 22:05:38 +00:00
parent 1ef81e6971
commit 763f1dd255
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-05-13 Dave Peticolas <dave@krondo.com>
* src/engine/Account.c (finder_help_function): fix warning
2001-05-13 Kevin Finn <kevinfinn@mediaone.net>
* src/SplitLedger.c, src/engine/Account.c, src/engine/Account.h:

View File

@ -2283,7 +2283,7 @@ finder_help_function(Account *account,
{
GList *slp;
if (account == NULL) return NULL;
if (account == NULL) return;
for (slp = g_list_last (xaccAccountGetSplitList (account));
slp;