TSAGE: Fix warning when compiling in release mode

This commit is contained in:
Max Horn 2011-05-13 11:46:03 +02:00
parent c02420df43
commit aaf2c0e6eb

View file

@ -115,7 +115,7 @@ template<typename T>
class SynchronizedList : public Common::List<T> {
public:
void synchronize(Serializer &s) {
int entryCount;
int entryCount = 0;
if (s.isLoading()) {
this->clear();