svn commit: r314944 - head/audio/milkytracker/files

Emanuel Haupt ehaupt at FreeBSD.org
Fri Mar 22 16:24:53 UTC 2013


Author: ehaupt
Date: Fri Mar 22 16:24:53 2013
New Revision: 314944
URL: http://svnweb.freebsd.org/changeset/ports/314944

Log:
  Remove superfluous comment from patch file.

Modified:
  head/audio/milkytracker/files/patch-src__compression__DecompressorGZIP.cpp

Modified: head/audio/milkytracker/files/patch-src__compression__DecompressorGZIP.cpp
==============================================================================
--- head/audio/milkytracker/files/patch-src__compression__DecompressorGZIP.cpp	Fri Mar 22 16:14:34 2013	(r314943)
+++ head/audio/milkytracker/files/patch-src__compression__DecompressorGZIP.cpp	Fri Mar 22 16:24:53 2013	(r314944)
@@ -1,17 +1,15 @@
---- ./src/compression/DecompressorGZIP.cpp.orig	2013-03-22 15:58:05.955397673 +0100
-+++ ./src/compression/DecompressorGZIP.cpp	2013-03-22 15:59:20.987397134 +0100
-@@ -57,11 +57,13 @@
+--- ./src/compression/DecompressorGZIP.cpp.orig	2013-03-22 17:21:02.000000000 +0100
++++ ./src/compression/DecompressorGZIP.cpp	2013-03-22 17:21:46.000000000 +0100
+@@ -57,11 +57,11 @@
  	
  bool DecompressorGZIP::decompress(const PPSystemString& outFileName, Hints hint)
  {
 -    gzFile *gz_input_file = NULL;
-+//    gzFile *gz_input_file = NULL;
 +	gzFile gz_input_file = NULL;
  	int len = 0;
  	pp_uint8 *buf;
  	
 -	if ((gz_input_file = (void **)gzopen (fileName.getStrBuffer(), "r")) == NULL)
-+//	if ((gz_input_file = (void **)gzopen (fileName.getStrBuffer(), "r")) == NULL)
 +	if ((gz_input_file = gzopen (fileName.getStrBuffer(), "r")) == NULL)
  		return false;
  	


More information about the svn-ports-all mailing list