summaryrefslogtreecommitdiff
path: root/biology/plink/patches/patch-elf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'biology/plink/patches/patch-elf.cpp')
-rw-r--r--biology/plink/patches/patch-elf.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/biology/plink/patches/patch-elf.cpp b/biology/plink/patches/patch-elf.cpp
new file mode 100644
index 00000000000..27f3633e690
--- /dev/null
+++ b/biology/plink/patches/patch-elf.cpp
@@ -0,0 +1,27 @@
+$NetBSD: patch-elf.cpp,v 1.1 2012/11/16 00:32:07 joerg Exp $
+
+--- elf.cpp.orig 2012-11-15 12:41:01.000000000 +0000
++++ elf.cpp
+@@ -1175,10 +1175,10 @@ void Plink::elfBaseline()
+ << setw(8) << gcnt << " "
+ << setw(8) << (double)cnt / (double)gcnt << "\n";
+
+- map<int,int>::iterator i = chr_cnt.begin();
+- while ( i != chr_cnt.end() )
++ map<int,int>::iterator i2 = chr_cnt.begin();
++ while ( i2 != chr_cnt.end() )
+ {
+- int c = i->first;
++ int c = i2->first;
+ int x = chr_cnt.find( c )->second;
+ int y = chr_gcnt.find( c )->second;
+
+@@ -1189,7 +1189,7 @@ void Plink::elfBaseline()
+ << setw(8) << y << " "
+ << setw(8) << (double)x / (double)y << "\n";
+
+- ++i;
++ ++i2;
+ }
+
+ }