summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaagar Jha <saagar@saagarjha.com>2023-05-07 04:19:37 -0700
committerSaagar Jha <saagar@saagarjha.com>2023-05-07 04:19:37 -0700
commite25960c5484392a6fd208ad3f63a483f5bbb695b (patch)
treecf17f75755d858d66b3450ed898e530feb7c8567
parent578c94ba69c183ce9329c909cff415f6732885e6 (diff)
Fix pointer-to-int cast
Resolves "warning: performing pointer subtraction with a null pointer has undefined behavior [-Wnull-pointer-subtraction]"
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index 8350b53..7a25b84 100644
--- a/httpd.c
+++ b/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));