commit | b4a4728ce4abd61a2d5be9ae925e1a81d56e4b5d | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Wed Jun 09 07:57:51 2010 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Wed Jun 09 07:57:51 2010 +0000 |
tree | cc214518f1f16d65a7e6bd57e87bcd703ed64baa | |
parent | 10ff00ebd61bd2ef7ae8d1b067d5b7084d68846b [diff] [blame] |
More minor build fixes. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@105706 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectArgs.cpp b/source/Commands/CommandObjectArgs.cpp index 7f1fd3d..5e432d7 100644 --- a/source/Commands/CommandObjectArgs.cpp +++ b/source/Commands/CommandObjectArgs.cpp
@@ -173,7 +173,7 @@ void *type; char *int_pos; - if ((int_pos = strstr (arg_type_cstr, "int"))) + if ((int_pos = strstr (const_cast<char*>(arg_type_cstr), "int"))) { Encoding encoding = eEncodingSint;