mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix gcc-4.2 warning on a string that cannot be NULL.
Pointed out by Andrew Sackville-West. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16549 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
06d3996de3
commit
ae0c428d0b
@ -273,7 +273,8 @@ xaccTransWriteLog (Transaction *trans, char flag)
|
||||
gnc_numeric_denom(amt),
|
||||
gnc_numeric_num(val),
|
||||
gnc_numeric_denom(val),
|
||||
drecn ? drecn : "");
|
||||
/* The next string always exists. No need to test it. */
|
||||
drecn);
|
||||
}
|
||||
|
||||
fprintf (trans_log, "===== END\n");
|
||||
|
Loading…
Reference in New Issue
Block a user