From: Ulrich Drepper Date: Wed, 23 Feb 2000 05:40:42 +0000 (+0000) Subject: (struct entry): Fix type of element data. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b3434a1e234c7761fb930edb82eef216d71f2cf;p=thirdparty%2Fglibc.git (struct entry): Fix type of element data. --- 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;