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;