Clean up a few places where SetOptionValue was using the global optarg, rather than the option_arg value that was passed in.

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@128064 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectFile.cpp b/source/Commands/CommandObjectFile.cpp
index fa62bad..2c8d561 100644
--- a/source/Commands/CommandObjectFile.cpp
+++ b/source/Commands/CommandObjectFile.cpp
@@ -62,7 +62,7 @@
                 if (option_arch.IsValid())
                     m_arch = option_arch;
                 else
-                    error.SetErrorStringWithFormat ("Invalid arch string '%s'.\n", optarg);
+                    error.SetErrorStringWithFormat ("Invalid arch string '%s'.\n", option_arg);
             }
             break;