From ff3ee9e59efa3a70841c23f1bdc35da74f5c6d18 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 4 May 2011 21:16:39 -0700 Subject: [PATCH] intern: Fix GCC warning. Otherwise, GCC issues the following warning: intern.c:83: warning: comparison of distinct pointer types lacks a cast. --- src/libpspp/intern.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libpspp/intern.c b/src/libpspp/intern.c index fe0e784cda..fc31acf0b4 100644 --- a/src/libpspp/intern.c +++ b/src/libpspp/intern.c @@ -78,8 +78,9 @@ intern_new (const char *s) } static struct interned_string * -interned_string_from_string (const char *s) +interned_string_from_string (const char *s_) { + char (*s)[1] = (char (*)[1]) s_; struct interned_string *is = UP_CAST (s, struct interned_string, string); assert (is->ref_cnt > 0); return is; -- 2.30.2