Bug#672077: add patch, uploaded to delayed/5

Matthias Klose doko at debian.org
Tue May 22 00:01:07 UTC 2012


tag 672077 + patch pending
thanks

add patch, uploaded to delayed/5
-------------- next part --------------
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 <doko at 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 )


More information about the Pkg-games-devel mailing list