Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 28afad5

Browse files
committed
Fix compiler warning
on MSVC 2010 Author: Michael Paquier <michael.paquier@gmail.com>
1 parent 0cb2e51 commit 28afad5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/pg_depend.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ getOwnedSequence(Oid relid, AttrNumber attnum)
610610
elog(ERROR, "more than one owned sequence found");
611611
else if (list_length(seqlist) < 1)
612612
elog(ERROR, "no owned sequence found");
613-
else
614-
return linitial_oid(seqlist);
613+
614+
return linitial_oid(seqlist);
615615
}
616616

617617
/*

0 commit comments

Comments
 (0)