Removed unneeded NULL argument.
This commit is contained in:
parent
1edb531c05
commit
5b5d6ac0ce
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue