2010-04-21 Stan Shebs <stan@codesourcery.com>

Nathan Sidwell  <nathan@codesourcery.com>

	* tracepoint.c (trace_save): Open in binary mode.
This commit is contained in:
Stan Shebs 2010-04-22 04:14:15 +00:00
parent 5a9351aeae
commit 105c2d85f7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-04-21 Stan Shebs <stan@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
* tracepoint.c (trace_save): Open in binary mode.
2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
* gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32

View File

@ -2616,7 +2616,7 @@ trace_save (const char *filename, int target_does_save)
pathname = tilde_expand (filename);
cleanup = make_cleanup (xfree, pathname);
fp = fopen (pathname, "w");
fp = fopen (pathname, "wb");
if (!fp)
error (_("Unable to open file '%s' for saving trace data (%s)"),
filename, safe_strerror (errno));