diff options
author | Martin Nowack <martin.nowack@gmail.com> | 2013-08-27 22:03:50 +0200 |
---|---|---|
committer | Martin Nowack <martin.nowack@gmail.com> | 2013-08-28 08:54:50 +0200 |
commit | 1f0255ab650b59ef8acafb57b23900f7d89046f7 (patch) | |
tree | 9a20cdde76bc3f2fe93cc145c999600ab92b2786 /lib/Solver | |
parent | 45fa391391b57beecefd2cbcf3ce243d8aaea4f7 (diff) | |
download | klee-1f0255ab650b59ef8acafb57b23900f7d89046f7.tar.gz |
Fix constness warnings issued by gcc 4.7
Diffstat (limited to 'lib/Solver')
-rw-r--r-- | lib/Solver/STPBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Solver/STPBuilder.cpp b/lib/Solver/STPBuilder.cpp index 789eb244..90252656 100644 --- a/lib/Solver/STPBuilder.cpp +++ b/lib/Solver/STPBuilder.cpp @@ -435,7 +435,7 @@ ExprHandle STPBuilder::constructSDivByConstant(ExprHandle expr_n, unsigned width // STP uniques arrays by name, so we make sure the name is unique by // including the address. char buf[32]; - unsigned const addrlen = sprintf(buf, "_%p", (void*)root) + 1; // +1 for null-termination + unsigned const addrlen = sprintf(buf, "_%p", (const void*)root) + 1; // +1 for null-termination unsigned const space = (root->name.length() > 32 - addrlen)?(32 - addrlen):root->name.length(); memmove(buf + space, buf, addrlen); // moving the address part to the end memcpy(buf, root->name.c_str(), space); // filling out the name part |