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; const uint8_t *ptr;
int32_t blocktype; int32_t blocktype;
int32_t lastblocktype; int32_t lastblocktype;
size_t blocklength; size_t blocklength = 0;
uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis
uint32_t tc = 0; uint32_t tc = 0;
int32_t packtype; int32_t packtype;

View file

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