summaryrefslogtreecommitdiffstats
path: root/tools/idevicescreenshot.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2011-11-26 15:31:46 +0100
committerGravatar Martin Szulecki2012-03-19 01:45:43 +0100
commit055fabdeaa8afcbe905aeb30d5c945f286aecb6a (patch)
treeedf19d52bb974af429c0f815b0d80b6ac91bae87 /tools/idevicescreenshot.c
parentd9051baf2e8f4672e6fab3b185a1ec7ce1a8c864 (diff)
downloadlibimobiledevice-055fabdeaa8afcbe905aeb30d5c945f286aecb6a.tar.gz
libimobiledevice-055fabdeaa8afcbe905aeb30d5c945f286aecb6a.tar.bz2
use binary mode for fopen to make it work with win32
Diffstat (limited to 'tools/idevicescreenshot.c')
-rw-r--r--tools/idevicescreenshot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicescreenshot.c b/tools/idevicescreenshot.c
index 8567f77..31717dd 100644
--- a/tools/idevicescreenshot.c
+++ b/tools/idevicescreenshot.c
@@ -97,7 +97,7 @@ int main(int argc, char **argv)
time_t now = time(NULL);
strftime(filename, 36, "screenshot-%Y-%m-%d-%H-%M-%S.tiff", gmtime(&now));
if (screenshotr_take_screenshot(shotr, &imgdata, &imgsize) == SCREENSHOTR_E_SUCCESS) {
- FILE *f = fopen(filename, "w");
+ FILE *f = fopen(filename, "wb");
if (f) {
if (fwrite(imgdata, 1, (size_t)imgsize, f) == (size_t)imgsize) {
printf("Screenshot saved to %s\n", filename);