summaryrefslogtreecommitdiffstats
path: root/flashrom.c
diff options
context:
space:
mode:
Diffstat (limited to 'flashrom.c')
-rw-r--r--flashrom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flashrom.c b/flashrom.c
index c3e32a1..326f725 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -834,7 +834,7 @@ int read_flash(struct flashchip *flash, char *filename)
printf("Error: No filename specified.\n");
return 1;
}
- if ((image = fopen(filename, "w")) == NULL) {
+ if ((image = fopen(filename, "wb")) == NULL) {
perror(filename);
exit(1);
}
@@ -1154,7 +1154,7 @@ int doit(struct flashchip *flash, int force, char *filename, int read_it, int wr
fprintf(stderr, "Continuing anyway.\n");
}
}
- if ((image = fopen(filename, "r")) == NULL) {
+ if ((image = fopen(filename, "rb")) == NULL) {
perror(filename);
programmer_shutdown();
exit(1);
OpenPOWER on IntegriCloud