aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-07-09 15:20:00 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-07-09 15:20:00 +0000
commit25967b43c64bb9258b533f8f414d5ad56e7d1195 (patch)
tree9ffc22910dbb7f9e9c6839ca6c70b60f2e4cef77
parent8226d9807819dbbc4b05751f4cdd09603832367d (diff)
downloadgnunet-25967b43c64bb9258b533f8f414d5ad56e7d1195.tar.gz
gnunet-25967b43c64bb9258b533f8f414d5ad56e7d1195.zip
Fixed compile warnings under windows
-rw-r--r--src/util/os_priority.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 7a6f0d65d..0200a4738 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -295,7 +295,7 @@ GNUNET_OS_start_process (struct GNUNET_DISK_PipeHandle *pipe_stdin,
295 start.hStdOutput = stdout_handle; 295 start.hStdOutput = stdout_handle;
296 } 296 }
297#endif 297#endif
298 if (FindExecutable(filename, NULL, path) <= 32) 298 if ((int) FindExecutable(filename, NULL, path) <= 32)
299 { 299 {
300 SetErrnoFromWinError (GetLastError ()); 300 SetErrnoFromWinError (GetLastError ());
301 GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "FindExecutable", fn); 301 GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "FindExecutable", fn);