diff options
author | Richard Linden <none@none> | 2013-08-26 18:37:07 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-26 18:37:07 -0700 |
commit | 0b96a0e80c34067056811d100fd5d4e7404e07b5 (patch) | |
tree | 51e0aac0dff7da59fa10a8cbbb654edea6516a01 /indra/llcommon/tests/llprocess_test.cpp | |
parent | 1f3f660cf4de95fa7e6cbe4015630640aecd22dd (diff) |
BUILDFIX: corrected template parameter for LL_BAD_TEMPLATE_INSTANTIATION macro in llunit
Diffstat (limited to 'indra/llcommon/tests/llprocess_test.cpp')
-rwxr-xr-x | indra/llcommon/tests/llprocess_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llprocess_test.cpp b/indra/llcommon/tests/llprocess_test.cpp index 709a095105..e09692c82d 100755 --- a/indra/llcommon/tests/llprocess_test.cpp +++ b/indra/llcommon/tests/llprocess_test.cpp @@ -62,7 +62,8 @@ #define aprchk(expr) aprchk_(#expr, (expr)) static void aprchk_(const char* call, apr_status_t rv, apr_status_t expected=APR_SUCCESS) { - tut::ensure_equals(STRINGIZE(call << " => " << rv << ": " << apr_strerror_helper(rv)), + tut::ensure_equals(STRINGIZE(call << " => " << rv << ": " << apr_strerror_helper + (rv)), rv, expected); } |