Commit 28afad5c authored by Peter Eisentraut's avatar Peter Eisentraut

Fix compiler warning

on MSVC 2010

Author: Michael Paquier <michael.paquier@gmail.com>
parent 0cb2e519
......@@ -610,8 +610,8 @@ getOwnedSequence(Oid relid, AttrNumber attnum)
elog(ERROR, "more than one owned sequence found");
else if (list_length(seqlist) < 1)
elog(ERROR, "no owned sequence found");
else
return linitial_oid(seqlist);
return linitial_oid(seqlist);
}
/*
......
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