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)
commitf38e413b209d33d70b3dbdb6fd799a59e392140c
treed3bd5b66472be4c09b2e18c60baae9789178d925
parent35e16515080868e87849a6846ab1c36977157154
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