From 69483b8f434c670b8ef19d40bf2ca83263182e23 Mon Sep 17 00:00:00 2001 From: Derek Barnett Date: Thu, 30 Jun 2016 09:50:30 -0500 Subject: [PATCH] Revert "Use the non-deprecated jsoncpp function name" --- src/toolkit/bamtools_filter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toolkit/bamtools_filter.cpp b/src/toolkit/bamtools_filter.cpp index 3b3cd347..2f172422 100644 --- a/src/toolkit/bamtools_filter.cpp +++ b/src/toolkit/bamtools_filter.cpp @@ -647,7 +647,7 @@ bool FilterTool::FilterToolPrivate::ParseScript(void) { if ( !reader.parse(document, root) ) { // use built-in error reporting mechanism to alert user what was wrong with the script cerr << "bamtools filter ERROR: failed to parse script - see error message(s) below" << endl - << reader.getFormattedErrorMessages(); + << reader.getFormatedErrorMessages(); return false; }