diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-18 20:22:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-18 20:22:58 +0000 |
commit | 3f365ba0fcc4d98f70c3c73f99ea782dd0d84622 (patch) | |
tree | c1089449bc75ab59c381228458030ed2bfd98afa /src/backend/bootstrap/bootstrap.c | |
parent | c3072cb1f04228ee2a185a63ca311f50a4f978a5 (diff) | |
download | postgresql-3f365ba0fcc4d98f70c3c73f99ea782dd0d84622.tar.gz postgresql-3f365ba0fcc4d98f70c3c73f99ea782dd0d84622.zip |
Inline memset() as MemSet().
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 829ad1b6347..7ad0c5c0192 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.25 1997/09/08 21:42:01 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.26 1997/09/18 20:20:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -894,7 +894,7 @@ AllocateAttribute() { elog(FATAL, "AllocateAttribute: malloc failed"); } - memset(attribute, 0, ATTRIBUTE_TUPLE_SIZE); + MemSet(attribute, 0, ATTRIBUTE_TUPLE_SIZE); return (attribute); } |