From: Spencer O. <nt...@us...> - 2009-10-30 13:03:28
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via e8a5092f1e23cee70cf1c3565db2ca40a61a11af (commit) from a53c72cdab7ea14e4aa0526270febf15a7248759 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e8a5092f1e23cee70cf1c3565db2ca40a61a11af Author: Spencer Oliver <nt...@us...> Date: Fri Oct 30 11:59:57 2009 +0000 bin2char: for win32 set stdin/stdout to binary mode Signed-off-by: Spencer Oliver <nt...@us...> diff --git a/src/helper/bin2char.c b/src/helper/bin2char.c index 36198c7..5bb4a6d 100644 --- a/src/helper/bin2char.c +++ b/src/helper/bin2char.c @@ -21,6 +21,10 @@ #include <stdio.h> #include <stdlib.h> +#ifdef _WIN32 + #include <fcntl.h> +#endif + int main(int argc, char **argv) { int c; @@ -34,6 +38,12 @@ int main(int argc, char **argv) exit(1); } +#ifdef _WIN32 + /* for win32 set stdin/stdout to binary mode */ + _setmode(_fileno(stdin), _O_BINARY); + _setmode(_fileno(stdout), _O_BINARY); +#endif + n = 0; name = argv[1]; fprintf(stdout, "/* autogenerated from %s */\n", argv[0]); ----------------------------------------------------------------------- Summary of changes: src/helper/bin2char.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |