Commit 966d4f52 authored by Magnus Hagander's avatar Magnus Hagander

Typo fix for MemSet size.

Fujii Masao
parent d7a71482
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment