Hello,
Got the latest src 4020 this morning in an effort to switch to my Mac
OS 10.6 machine in order to make use of a new NSOpenGLContext feature.
(SIGH...)
This is likely an issue with Xcode as it didn't throw an error with
make/Darwin.
/Users/slate/Documents/equalizer/src/XCode/../lib/net/
rspConnection.cpp:276:0 /Users/slate/Documents/equalizer/src/XCode/../
lib/net/rspConnection.cpp:276: warning: converting negative value
'-0x00000000000000001' to 'long long unsigned int'
Switching:
//return (bytes == bytesLeft) ? -1 : bytes - bytesLeft;
For:
if (bytes == bytesLeft){
return -1;
} else {
return (int64_t)(bytes - bytesLeft);
}
Made the error go away.
-Stephen
_______________________________________________
eq-dev mailing list
[email protected]
http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev
http://www.equalizergraphics.com