tag 672077 + patch pending thanks
add patch, uploaded to delayed/5
diff -u netpanzer-0.8.4.debian.1/debian/changelog netpanzer-0.8.4.debian.1/debian/changelog --- netpanzer-0.8.4.debian.1/debian/changelog +++ netpanzer-0.8.4.debian.1/debian/changelog @@ -1,3 +1,10 @@ +netpanzer (0.8.4.debian.1-1.1) unstable; urgency=low + + * Non maintainer upload. + * Fix build failure with GCC 4.7. Closes: #672077. + + -- Matthias Klose <d...@debian.org> Mon, 21 May 2012 23:53:00 +0000 + netpanzer (0.8.4.debian.1-1) unstable; urgency=low [ Eddy PetriÈor ] only in patch2: unchanged: --- netpanzer-0.8.4.debian.1.orig/src/Lib/ArrayUtil/QueueTemplate.hpp +++ netpanzer-0.8.4.debian.1/src/Lib/ArrayUtil/QueueTemplate.hpp @@ -42,7 +42,7 @@ bool enqueue(const TYPE& object ) { - add( object, (rear + 1) % this->size ); + this->add( object, (rear + 1) % this->size ); rear = (rear + 1) % this->size; if ( front == rear )