gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r13563 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r13563 - gnunet/src/util
Date: Fri, 5 Nov 2010 12:27:58 +0100

Author: grothoff
Date: 2010-11-05 12:27:58 +0100 (Fri, 05 Nov 2010)
New Revision: 13563

Modified:
   gnunet/src/util/os_priority.c
Log:
cast

Modified: gnunet/src/util/os_priority.c
===================================================================
--- gnunet/src/util/os_priority.c       2010-11-05 11:26:18 UTC (rev 13562)
+++ gnunet/src/util/os_priority.c       2010-11-05 11:27:58 UTC (rev 13563)
@@ -399,7 +399,7 @@
       start.hStdOutput = stdout_handle;
     }
 
-  if (32 >= FindExecutableA (filename, NULL, path)) 
+  if (32 >= (int) FindExecutableA (filename, NULL, path)) 
     {
       SetErrnoFromWinError (GetLastError ());
       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "FindExecutable", 
filename);
@@ -555,7 +555,7 @@
 
   GNUNET_assert (lsocks == NULL);
 
-  if (32 >= FindExecutableA (filename, NULL, non_const_filename)) 
+  if (32 >= (int) FindExecutableA (filename, NULL, non_const_filename)) 
     {
       SetErrnoFromWinError (GetLastError ());
       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "FindExecutable", 
filename);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]