summaryrefslogtreecommitdiff
path: root/fstree.c
diff options
context:
space:
mode:
authorAndrei Errapart <andrei@errapartengineering.com>2014-06-19 21:12:27 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2014-06-19 21:12:31 +1000
commit83e606a64d7b555bea3c3007b48bb9f790f0139c (patch)
tree2b6ddfc985cb3de3de3bd2d0e0ccf94ff8460c72 /fstree.c
parent25a9bd6267bf1a2e144344325a71432193eed4b0 (diff)
downloaddevice-tree-compiler-83e606a64d7b555bea3c3007b48bb9f790f0139c.tar.gz
Open binary files in binary mode
The "b" flag to fopen() is generally a no-op on Unix-like systems, but may be important on other systems, including Windows. Signed-off-by: Andrei Errapart <andrei@errapartengineering.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'fstree.c')
-rw-r--r--fstree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstree.c b/fstree.c
index 4d2791c..6d1beec 100644
--- a/fstree.c
+++ b/fstree.c
@@ -52,7 +52,7 @@ static struct node *read_fstree(const char *dirname)
struct property *prop;
FILE *pfile;
- pfile = fopen(tmpname, "r");
+ pfile = fopen(tmpname, "rb");
if (! pfile) {
fprintf(stderr,
"WARNING: Cannot open %s: %s\n",