diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-01-16 18:55:06 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-01-16 18:55:06 +0000 |
commit | f7a46012c7991c59e3ff60fd4862bffcd8f01a06 (patch) | |
tree | e148bfb375bb406ea6a1ee2b61620fe8dc39b01f /ld/testsuite/ld-elf | |
parent | 40b36307e31ea3e3606a1698f35d0b9769405615 (diff) | |
download | gdb-f7a46012c7991c59e3ff60fd4862bffcd8f01a06.zip gdb-f7a46012c7991c59e3ff60fd4862bffcd8f01a06.tar.gz gdb-f7a46012c7991c59e3ff60fd4862bffcd8f01a06.tar.bz2 |
2007-01-16 H.J. Lu <hongjiu.lu@intel.com>
* ld-elf/dl1main.c (main): Fix a typo.
Diffstat (limited to 'ld/testsuite/ld-elf')
-rw-r--r-- | ld/testsuite/ld-elf/dl1main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/testsuite/ld-elf/dl1main.c b/ld/testsuite/ld-elf/dl1main.c index f277bf5..f224e12 100644 --- a/ld/testsuite/ld-elf/dl1main.c +++ b/ld/testsuite/ld-elf/dl1main.c @@ -13,7 +13,7 @@ main (void) handle = dlopen("./tmpdir/libdl1.so", RTLD_GLOBAL|RTLD_LAZY); if (!handle) { - printf("dlopen libfoo.so: %s\n", dlerror ()); + printf("dlopen ./tmpdir/libdl1.so: %s\n", dlerror ()); return 1; } |