From ccdf435a965d8b148a558464f46df67f4b7bca48 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 6 Dec 2010 22:07:36 +0000 Subject: [PATCH] Forgot to also check in this file with the previous r121036 change: /lldb/trunk/test/load_unload/TestLoadUnload.py llvm-svn: 121045 --- lldb/test/load_unload/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/load_unload/main.c b/lldb/test/load_unload/main.c index 9d2882540e3c..4fa4626dec28 100644 --- a/lldb/test/load_unload/main.c +++ b/lldb/test/load_unload/main.c @@ -23,7 +23,7 @@ main (int argc, char const *argv[]) void *c_dylib_handle = NULL; int (*a_function) (void); - a_dylib_handle = dlopen (a_name, RTLD_NOW); + a_dylib_handle = dlopen (a_name, RTLD_NOW); // Set break point at this line for test_lldb_process_load_and_unload_commands(). if (a_dylib_handle == NULL) { fprintf (stderr, "%s\n", dlerror());