From 25967b43c64bb9258b533f8f414d5ad56e7d1195 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 9 Jul 2010 15:20:00 +0000 Subject: [PATCH] Fixed compile warnings under windows --- src/util/os_priority.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, start.hStdOutput = stdout_handle; } #endif - if (FindExecutable(filename, NULL, path) <= 32) + if ((int) FindExecutable(filename, NULL, path) <= 32) { SetErrnoFromWinError (GetLastError ()); GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "FindExecutable", fn); -- 2.25.1