diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-05-09 00:31:07 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-10 03:05:05 +0200 |
commit | 84c7d79d29d0bb7146c0b45c7fd028408bb11cd1 (patch) | |
tree | 07b4d175f72e70efa9a55aa19a808063c47e0e13 /libps | |
parent | cb5ab7708b6b7f9941a9ba914ede153601c5be49 (diff) | |
download | hurd-84c7d79d29d0bb7146c0b45c7fd028408bb11cd1.tar.gz hurd-84c7d79d29d0bb7146c0b45c7fd028408bb11cd1.tar.bz2 hurd-84c7d79d29d0bb7146c0b45c7fd028408bb11cd1.zip |
libps: Silence a warning
GCC was complaining about the mismatch in types between the 'fn' pointer
and the function pointers assigned to it. Since fn is meant to be used
with different function types, represent it as a 'void *' and not a
pointer to any particular function type.
Message-Id: <20230508213136.608575-13-bugaevc@gmail.com>
Diffstat (limited to 'libps')
-rw-r--r-- | libps/ps.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -535,7 +535,7 @@ struct ps_getter /* A function that will get the value; the protocol between this function and its caller is type-dependent. */ - void (*fn) (void); + void *fn; }; /* Access macros: */ |