From b9ccfb348184402ee856f6230b66840ab1ec1b64 Mon Sep 17 00:00:00 2001 From: eschnett Date: Fri, 18 Apr 2014 13:18:37 +0000 Subject: Correct minor const error git-svn-id: http://svn.cactuscode.org/flesh/trunk@5106 17b73243-c579-4c4c-a9d2-2d5706c11dac --- src/piraha/Call.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/piraha/Call.cc b/src/piraha/Call.cc index 21ab5c54..a59d287b 100644 --- a/src/piraha/Call.cc +++ b/src/piraha/Call.cc @@ -252,7 +252,7 @@ smart_ptr find_val(smart_ptr gr,std::string thorn,std::string name case PARAMETER_KEYWORD: { ret->type = PIR_STRING; - const char *s = *(const char **)result; + const char *s = *(const char *const *)result; ret->sdata += s; } break; -- cgit v1.2.3