* cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to

write dump file binary.
This commit is contained in:
Corinna Vinschen 2002-08-07 08:52:24 +00:00
parent a4aa0fb7d0
commit 5b3316750e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-08-06 Corinna Vinschen <vinschen@redhat.com>
* cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
write dump file binary.
2002-08-05 Michael Snyder <msnyder@redhat.com>
* mips-tdep.c (mips_find_saved_regs): Adjust stack according

View File

@ -442,7 +442,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
c->completer = filename_completer;
d = XMALLOC (struct dump_context);
d->func = func;
d->mode = "w";
d->mode = "wb";
set_cmd_context (c, d);
c->func = call_dump_func;
@ -450,7 +450,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
c->completer = filename_completer;
d = XMALLOC (struct dump_context);
d->func = func;
d->mode = "a";
d->mode = "ab";
set_cmd_context (c, d);
c->func = call_dump_func;