Use Size instead of uint32 to store result of sizeof()

Silences coverity and is more consistent with other functions in the
same file.

Andres Freund
pull/6/head
Heikki Linnakangas 12 years ago
parent 1460b199e6
commit c834576839
  1. 2
      src/backend/replication/logical/snapbuild.c

@ -1431,7 +1431,7 @@ SnapBuildSerialize(SnapBuild *builder, XLogRecPtr lsn)
char path[MAXPGPATH];
int ret;
struct stat stat_buf;
uint32 sz;
Size sz;
Assert(lsn != InvalidXLogRecPtr);
Assert(builder->last_serialized_snapshot == InvalidXLogRecPtr ||

Loading…
Cancel
Save