Code cleanup: in C89, there is no point casting the first argument to
authorNeil Conway <neilc@samurai.com>
Wed, 11 May 2005 01:26:02 +0000 (01:26 +0000)
committerNeil Conway <neilc@samurai.com>
Wed, 11 May 2005 01:26:02 +0000 (01:26 +0000)
commit82dd9e70dd8621afbac218434a83559a76b9e85e
tree33a533041ce33c267288e7809a82890f93db9f71
parentf0ee905f89e087572c21665fbb58c124e5296eeb
Code cleanup: in C89, there is no point casting the first argument to
memset() or MemSet() to a char *. For one, memset()'s first argument is
a void *, and further void * can be implicitly coerced to/from any other
pointer type.
src/backend/access/hash/hashovfl.c
src/backend/access/hash/hashpage.c
src/backend/access/hash/hashutil.c
src/backend/storage/lmgr/lock.c
src/backend/utils/cache/relcache.c
src/backend/utils/cache/syscache.c
src/backend/utils/fmgr/dfmgr.c
src/include/c.h
src/interfaces/libpq/fe-protocol2.c