فهرست منبع

daemon.c: muted Oracle compiler warning

Oracle Developer Studio cc compiler is too picky about pointers
conversion from/to void*. Muted warning for the main code and
left some warnings in examples as they are too obvious.
Evgeny Grin (Karlson2k) 5 سال پیش
والد
کامیت
ea5a9d7a4c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/microhttpd/daemon.c

+ 1 - 1
src/microhttpd/daemon.c

@@ -148,7 +148,7 @@ mhd_panic_std (void *cls,
 /**
  * Handler for fatal errors.
  */
-MHD_PanicCallback mhd_panic = NULL;
+MHD_PanicCallback mhd_panic = (MHD_PanicCallback) NULL;
 
 /**
  * Closure argument for #mhd_panic.