1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 03:09:13 +00:00

Fixes for UUID compilation on Windows.

This commit is contained in:
2013-01-04 21:54:22 -08:00
committed by Darryl Pogue
parent bcf6e97d23
commit f455ee25ec
4 changed files with 4 additions and 2 deletions

View File

@ -489,7 +489,7 @@ static void SocketInitListen (
notify.buildId = 0;
notify.buildType = 0;
notify.branchId = 0;
notify.productId = 0;
notify.productId = kNilUuid;
notify.addr = listenAddr;
notify.buffer = sock->opRead.read.buffer;
notify.bytes = 0;

View File

@ -428,6 +428,6 @@ FAsyncNotifySocketProc AsyncSocketFindNotifyProc (
*buildId = 0;
*buildType = 0;
*branchId = 0;
*productId = 0;
*productId = kNilUuid;
return nil;
}