summaryrefslogtreecommitdiffstats
path: root/adb/sysdeps_win32.c
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2014-10-01 22:53:50 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-01 22:53:51 +0000
commit64f44b8444dabd69cf391d42e10d44e8e926a79d (patch)
treec4f6993fe10e207f11bc10772246250fa097a275 /adb/sysdeps_win32.c
parent00851a53bebe16dd2a0460245505461f40a7a307 (diff)
parentb75d6f1429edf41cd15772a8d9d3a96f84a21862 (diff)
downloadsystem_core-64f44b8444dabd69cf391d42e10d44e8e926a79d.zip
system_core-64f44b8444dabd69cf391d42e10d44e8e926a79d.tar.gz
system_core-64f44b8444dabd69cf391d42e10d44e8e926a79d.tar.bz2
Merge "Remove obsolete reference to ddk; Fixes for -Werror" into lmp-dev
Diffstat (limited to 'adb/sysdeps_win32.c')
-rw-r--r--adb/sysdeps_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/adb/sysdeps_win32.c b/adb/sysdeps_win32.c
index 29f58ec..1904325 100644
--- a/adb/sysdeps_win32.c
+++ b/adb/sysdeps_win32.c
@@ -1549,7 +1549,7 @@ _wait_for_all(HANDLE* handles, int handles_count)
* reset" event that will remain set once it was set. */
main_event = CreateEvent(NULL, TRUE, FALSE, NULL);
if (main_event == NULL) {
- D("Unable to create main event. Error: %d", GetLastError());
+ D("Unable to create main event. Error: %d", (int)GetLastError());
free(threads);
return (int)WAIT_FAILED;
}