2001-08-03 Dave Peticolas <dave@krondo.com>

* src/engine/gnc-book.c: fix warnings


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5065 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-08-03 22:56:03 +00:00
parent 4817add780
commit 982d2168ec
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2001-08-03 Dave Peticolas <dave@krondo.com>
* src/engine/gnc-book.c: fix warnings
* doc/sgml/C/xacc-sxeditor.sgml: fix warning
2001-08-02 Robert Graham Merkel <rgmerk@mira.net>

View File

@ -797,7 +797,7 @@ static char * searchpaths[] =
typedef gboolean (*pathGenerator)(char *pathbuf, int which);
gboolean
static gboolean
xaccAddEndPath(char *pathbuf, const char *ending, int len)
{
if(len + strlen(pathbuf) >= PATH_MAX)
@ -807,7 +807,7 @@ xaccAddEndPath(char *pathbuf, const char *ending, int len)
return TRUE;
}
gboolean
static gboolean
xaccCmdPathGenerator(char *pathbuf, int which)
{
if(which != 0)
@ -825,7 +825,7 @@ xaccCmdPathGenerator(char *pathbuf, int which)
}
}
gboolean
static gboolean
xaccDataPathGenerator(char *pathbuf, int which)
{
char *path;
@ -849,7 +849,7 @@ xaccDataPathGenerator(char *pathbuf, int which)
}
}
gboolean
static gboolean
xaccUserPathPathGenerator(char *pathbuf, int which)
{
char *path = NULL;