Explorar el Código

Fix pointer-to-int cast

Resolves "warning: performing pointer subtraction with a null pointer
has undefined behavior [-Wnull-pointer-subtraction]"
Saagar Jha hace 3 años
padre
commit
e25960c548
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      httpd.c

+ 1 - 1
httpd.c

@@ -366,7 +366,7 @@ void job_wait(xs_val **job)
 static void *job_thread(void *arg)
 /* job thread */
 {
-    int pid = (char *) arg - (char *) 0x0;
+    int pid = (int)(uintptr_t)arg;
 
     srv_debug(1, xs_fmt("job thread %d started", pid));