openbsd-ports/www/links+/patches/patch-cookies_c
fgsch 0d6cd66bb3 use intptr_t where needed. pvalchev@ actually noticed this and provided
diffs but unfortunately they got lost in a hd crash.
pvalchev@ ok.
2002-09-16 04:11:23 +00:00

13 lines
382 B
Plaintext

$OpenBSD: patch-cookies_c,v 1.1 2002/09/16 04:11:23 fgsch Exp $
--- cookies.c.orig Sun Sep 15 08:51:52 2002
+++ cookies.c Sun Sep 15 08:52:03 2002
@@ -177,7 +177,7 @@ void delete_cookie(struct cookie *c)
struct cookie *find_cookie_id(void *idp)
{
- int id = (int)idp;
+ int id = (intptr_t)idp;
struct cookie *c;
foreach(c, cookies) if (c->id == id) return c;
return NULL;