1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fix compiling.

This commit is contained in:
Darryl Pogue
2012-03-10 19:16:52 -08:00
parent b7035a631e
commit a28213806f
4 changed files with 5 additions and 6 deletions

View File

@ -350,7 +350,7 @@ static void RequestNextManifestFile () {
if (!manifestQueue.size())
return;
ManifestFile* nextFile = manifestQueue.front();
ManifestFile* nextfile = manifestQueue.front();
manifestQueue.pop();
char path[MAX_PATH];
@ -920,7 +920,7 @@ void UruPrepProc (void * param) {
while (manifestQueue.size())
{
ManifestFile* mf = manifestQueue.front()
ManifestFile* mf = manifestQueue.front();
manifestQueue.pop();
delete mf;
}