From 4c25cfd18d2fa54a7008bd92c2d16697ff558005 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 19 Jul 2008 21:20:53 +0200 Subject: remove casting warning --- strpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strpool.c b/strpool.c index 63d5e2a..32f1ed7 100644 --- a/strpool.c +++ b/strpool.c @@ -553,7 +553,7 @@ static int process(FILE *in, FILE *out, const char*ifname) { "#define STRPOOL\n" "#endif\n" "#ifndef _P\n" - "#define _P(x) (_strpool_ + (unsigned) (x))\n" + "#define _P(x) (_strpool_ + ((x) - (const char*) 0))\n" "#endif\n\n"); dump_text(out, first); -- cgit