From e2cd83375743285f2ee41aad835c4d81da36f0d4 Mon Sep 17 00:00:00 2001 From: Chris Frey Date: Fri, 4 Jul 2008 00:56:00 -0400 Subject: [PATCH] Removed bool reference argument in GetParser() --- ChangeLog | 1 + tools/btool.cc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8afb8b58..d5e39a81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,7 @@ Release: version 0.13 - 2008/07/?? - added -i option to brecsum, to include record IDs in the sums - applied Ashley Willis's btool 0.12 null parser patch to CVS, which required some manual porting changes... + - removed bool reference argument in GetParser() 2008/06/26 - updated udev rules to recognize devices with the 8004 Product ID - fixed bug in test/buildtest.sh when opensync is not pre-built diff --git a/tools/btool.cc b/tools/btool.cc index c781f6ed..6d99aa98 100644 --- a/tools/btool.cc +++ b/tools/btool.cc @@ -219,7 +219,7 @@ public: } }; -auto_ptr GetParser(const string &name, const string &filename, const bool &null_parser) +auto_ptr GetParser(const string &name, const string &filename, bool null_parser) { if( null_parser ) { // use null parser -- 2.11.4.GIT