1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Typo fix for MemSet size.

Fujii Masao
This commit is contained in:
Magnus Hagander 2011-01-25 10:50:04 +01:00
parent d7a714828f
commit 966d4f52c2

View File

@ -148,7 +148,7 @@ parse_basebackup_options(List *options, basebackup_options *opt)
bool o_progress = false;
bool o_fast = false;
MemSet(opt, 0, sizeof(opt));
MemSet(opt, 0, sizeof(*opt));
foreach(lopt, options)
{
DefElem *defel = (DefElem *) lfirst(lopt);