Revision: 45815
http://sourceforge.net/p/vice-emu/code/45815
Author: gpz
Date: 2025-11-03 23:51:36 +0000 (Mon, 03 Nov 2025)
Log Message:
-----------
fix warning
Modified Paths:
--------------
trunk/vice/src/userport/userport_wic64.c
Modified: trunk/vice/src/userport/userport_wic64.c
===================================================================
--- trunk/vice/src/userport/userport_wic64.c 2025-11-03 20:39:43 UTC (rev 45814)
+++ trunk/vice/src/userport/userport_wic64.c 2025-11-03 23:51:36 UTC (rev 45815)
@@ -2618,7 +2618,7 @@
/* try to connect to the default server */
curl_easy_setopt(c, CURLOPT_URL, default_server_hostname);
- curl_easy_setopt(c, CURLOPT_CONNECT_ONLY, 0);
+ curl_easy_setopt(c, CURLOPT_CONNECT_ONLY, 0L);
/* Perform the connect */
res = curl_easy_perform(c);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|