From 67c3cf5357c7971a8f20f8b0e1d197f905a982e1 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Wed, 24 Oct 2012 03:29:40 +0000 Subject: [PATCH] eArgTypePath was removed in r166533; change -c to expect eArgTypeFilename. llvm-svn: 166542 --- lldb/tools/driver/Driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp index ebd4c62d995b..3256c7d62b9d 100644 --- a/lldb/tools/driver/Driver.cpp +++ b/lldb/tools/driver/Driver.cpp @@ -84,7 +84,7 @@ static OptionDefinition g_options[] = "be one of the architectures for which the program was compiled." }, { LLDB_OPT_SET_3, true , "file" , 'f', required_argument, 0, eArgTypeFilename, "Tells the debugger to use the file as the program to be debugged." }, - { LLDB_OPT_SET_3, false, "core" , 'c', required_argument, 0, eArgTypePath, + { LLDB_OPT_SET_3, false, "core" , 'c', required_argument, 0, eArgTypeFilename, "Tells the debugger to use the fullpath to as the core file." }, { LLDB_OPT_SET_4, true , "attach-name" , 'n', required_argument, 0, eArgTypeProcessName, "Tells the debugger to attach to a process with the given name." },