From 3f365ba0fcc4d98f70c3c73f99ea782dd0d84622 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 18 Sep 1997 20:22:58 +0000 Subject: Inline memset() as MemSet(). --- src/bin/psql/psql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/psql/psql.c') diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index e832b9c0bfa..5a75651ad82 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.95 1997/09/13 13:03:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.96 1997/09/18 20:22:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1973,7 +1973,7 @@ main(int argc, char **argv) bool singleSlashCmd = 0; int c; - memset(&settings, 0, sizeof settings); + MemSet(&settings, 0, sizeof settings); settings.opt.align = 1; settings.opt.header = 1; settings.queryFout = stdout; -- cgit v1.2.3