diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-21 08:47:38 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-21 08:47:38 +0000 |
commit | 0c53539460da685bd5c6bc61a1dca61e025431ed (patch) | |
tree | ca99a80b417cd6e325e9112438f68d983f714621 /man3/hsearch.3 | |
parent | 56e836392e9d4d8e84322dc45a28b76bc85a2cfd (diff) |
ffix
Diffstat (limited to 'man3/hsearch.3')
-rw-r--r-- | man3/hsearch.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/hsearch.3 b/man3/hsearch.3 index fcfe505a3..43bfb9c1b 100644 --- a/man3/hsearch.3 +++ b/man3/hsearch.3 @@ -192,7 +192,7 @@ main(void) e.key = data[i]; /* data is just an integer, instead of a pointer to something */ - e.data = (void *)i; + e.data = (void *) i; ep = hsearch(e, ENTER); /* there should be no failures */ if (ep == NULL) { |