commit | 34a4f0b8c75e2c5a347e04454423cf55c5406075 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Oct 05 09:37:18 2016 -0700 |
committer | Elliott Hughes <enh@google.com> | Wed Oct 05 09:37:44 2016 -0700 |
tree | 9c4e7f6807ec36d74d010c2114ce916e9fe40323 | |
parent | 093951a2307f6572f911883c1ae6d01996e872c2 [diff] [blame] |
Test for _WIN32 in instead of USE_MINGW. Bug: http://b/23392815 Test: builds Change-Id: I7fce8de1f0e2314170cce456cd49346dcee9d134
diff --git a/libsparse/sparse_read.c b/libsparse/sparse_read.c index dbb4dab..a188202 100644 --- a/libsparse/sparse_read.c +++ b/libsparse/sparse_read.c
@@ -79,7 +79,7 @@ s = " at "; } if (verbose) { -#ifndef USE_MINGW +#ifndef _WIN32 if (err == -EOVERFLOW) { sparse_print_verbose("EOF while reading file%s%s\n", s, at); } else