From 5b5d6ac0ce261be5987b4edbaa5e7b23b6375f38 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 19 Sep 2008 08:09:17 -0400 Subject: [PATCH] Removed unneeded NULL argument. --- src/textual.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual.cc b/src/textual.cc index 6b6f814e..78ae327e 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -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(new xact_t(NULL)); + std::auto_ptr xact(new xact_t); if (entry) xact->entry = entry;