Fix three (probably harmless) maybe-uninitialized warnings.

git-svn-id: https://svn.eduke32.com/eduke32@3017 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2012-09-13 07:07:21 +00:00
parent 132aebf1c1
commit 9f0824e79f
2 changed files with 2 additions and 2 deletions

View File

@ -485,7 +485,7 @@ static playbackstatus MV_GetNextVOCBlock(VoiceNode *voice)
const uint8_t *ptr;
int32_t blocktype;
int32_t lastblocktype;
size_t blocklength;
size_t blocklength = 0;
uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis
uint32_t tc = 0;
int32_t packtype;

View File

@ -3671,7 +3671,7 @@ void C_Compile(const char *filenameortext, int32_t isfilename)
char *mptr = NULL;
static char firstime=1;
int32_t i,j;
int32_t fs,fp;
int32_t fs=0,fp=0;
int32_t startcompiletime;
instype *oscriptPtr;
int32_t ostateCount = g_stateCount;