From 1b3434a1e234c7761fb930edb82eef216d71f2cf Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 23 Feb 2000 05:40:42 +0000 Subject: [PATCH] (struct entry): Fix type of element data. --- misc/search.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/search.h b/misc/search.h index 8fb2539cd10..0f919b6a728 100644 --- a/misc/search.h +++ b/misc/search.h @@ -1,5 +1,5 @@ /* Declarations for System V style searching functions. - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -70,7 +70,7 @@ ACTION; typedef struct entry { char *key; - char *data; + void *data; } ENTRY; -- 2.47.2