Added missing initializers

This commit is contained in:
Robert Osfield 2016-06-20 12:46:00 +01:00
parent f2297fd100
commit 949d71f2b6

View File

@ -721,7 +721,9 @@ bool trpgwArchive::CheckpointHeader()
}
// Note: Not sure what this is
char space[40];
char space[4];
space[0] = space[1] = space[2] = space[3] = 0;
if (fwrite(space,1,4,fp) != 4)
return false;