diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-09-30 16:37:32 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2005-09-30 16:37:32 +0000 |
commit | 869b9d07bbfd935cc39b6bccb3da0506e467b6a7 (patch) | |
tree | 42d3ddf72ff4cf1163eb14e0c790fa9876901220 /binutils/sysdump.c | |
parent | 58654fd86881e7321ff008ba2977e175a5b141b7 (diff) | |
download | gdb-869b9d07bbfd935cc39b6bccb3da0506e467b6a7.zip gdb-869b9d07bbfd935cc39b6bccb3da0506e467b6a7.tar.gz gdb-869b9d07bbfd935cc39b6bccb3da0506e467b6a7.tar.bz2 |
* addr2line.c (main): Likewise.
* ar.c (main): Likewise.
* coffdump.c (main): Likewise.
* cxxfilt.c (main): Likewise.
* dlltool.c (main): Likewise.
* dllwrap.c (main): Likewise.
* nlmconv.c (main): Likewise.
* nm.c (main): Likewise.
* objcopy.c (main): Likewise.
* objdump.c (main): Likewise.
* readelf.c (main): Likewise.
* size.c (main): Likeiwse.
* srcconv.c (main): Likewise.
* strings.c (main): Likewise.
* sysdump.c (main): Likewise.
* sysinfo.c (main): Likewise.
* windres.c (main): Likewise.
* ldmain.c (main): Use expandargv.
* gprof.c (main): Use expandargv.
* as.c (main): Use expandargv.
Diffstat (limited to 'binutils/sysdump.c')
-rw-r--r-- | binutils/sysdump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binutils/sysdump.c b/binutils/sysdump.c index 2b38b2f..ec19472 100644 --- a/binutils/sysdump.c +++ b/binutils/sysdump.c @@ -673,6 +673,8 @@ main (int ac, char **av) program_name = av[0]; xmalloc_set_program_name (program_name); + expandargv (&ac, &av); + while ((opt = getopt_long (ac, av, "HhVv", long_options, (int *) NULL)) != EOF) { switch (opt) |