diff options
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |