some arguments should be const

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@514 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-02-06 06:29:01 +00:00
parent 5c2a5e2c10
commit cbfd145555

View File

@ -248,7 +248,7 @@ xaccGetPeerAccountFromID ( Account *acc, int acc_id )
\********************************************************************/
Account *
xaccGetAccountFromName ( AccountGroup *root, char * name )
xaccGetAccountFromName ( AccountGroup *root, const char * name )
{
Account *acc;
int i;
@ -277,7 +277,7 @@ xaccGetAccountFromName ( AccountGroup *root, char * name )
\********************************************************************/
Account *
xaccGetPeerAccountFromName ( Account *acc, char * name )
xaccGetPeerAccountFromName ( Account *acc, const char * name )
{
AccountGroup * root;
Account *peer_acc;