Removed unneeded NULL argument.

This commit is contained in:
John Wiegley 2008-09-19 08:09:17 -04:00
parent 1edb531c05
commit 5b5d6ac0ce

View file

@ -118,7 +118,7 @@ xact_t * parse_xact(char * line, account_t * account, entry_t * entry = NULL)
try {
// The account will be determined later...
std::auto_ptr<xact_t> xact(new xact_t(NULL));
std::auto_ptr<xact_t> xact(new xact_t);
if (entry)
xact->entry = entry;