gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r29591 - gnunet/src/util
Date: Thu, 26 Sep 2013 11:37:44 +0200

Author: grothoff
Date: 2013-09-26 11:37:44 +0200 (Thu, 26 Sep 2013)
New Revision: 29591

Modified:
   gnunet/src/util/os_installation.c
Log:
-get rid of compiler warning

Modified: gnunet/src/util/os_installation.c
===================================================================
--- gnunet/src/util/os_installation.c   2013-09-26 09:32:18 UTC (rev 29590)
+++ gnunet/src/util/os_installation.c   2013-09-26 09:37:44 UTC (rev 29591)
@@ -295,7 +295,7 @@
   c = _dyld_image_count ();
   for (i = 0; i < c; i++)
   {
-    if (_dyld_get_image_header (i) != &_mh_dylib_header)
+    if (((const void *) _dyld_get_image_header (i)) != (const void 
*)&_mh_dylib_header)
       continue;
     path = _dyld_get_image_name (i);
     if ( (NULL == path) || (0 == strlen (path)) )




reply via email to

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