PDA

View Full Version : Latest CVS errors.


loderunner
11-07-2004, 09:35 AM
I've been getting compile errors in entity.cpp for the last 2 days. I was hoping the changes that showed up this time would fix it.

entity.cpp:863: warning: unused variable 'int i'
make: ***[entity.o] Error 1

is this another one of those situations where the source compiles fine under win32, but pukes on Linux? That would explain nobody else complaining about it, I guess..

MindlessTux
11-07-2004, 09:49 AM
I had same issue, tring this for the first time. Went and looked at the file, commented out the offending int line and generated diffrent error....

schoppew
11-07-2004, 10:46 AM
This seems to be a small problem with a line that logs events.
An easy fix until the CVS version is fixed would be this....

In entity.cpp on the line that says...

LogFile->write(EQEMuLog::Debug, "MakeDoorPacket() packet length:%i qty:%i", length, qty);

Change to :
LogFile->write(EQEMuLog::Debug, "MakeDoorPacket() packet length:%i qty:", length);

This is just a temporary fix to get it running....

Theeper
11-08-2004, 12:48 AM
Is that the PERL build?

EDIT: nvm, dumb question.