From 6878bb24be308100a3e516b34d200770870d20d7 Mon Sep 17 00:00:00 2001
From: Aaron <aaronquinlan@gmail.com>
Date: Fri, 19 Feb 2010 15:06:20 -0500
Subject: [PATCH] Fixed compilation warning in bamToBed.cpp

---
 src/bamToBed/bamToBed.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bamToBed/bamToBed.cpp b/src/bamToBed/bamToBed.cpp
index 665fad47..fb56b273 100755
--- a/src/bamToBed/bamToBed.cpp
+++ b/src/bamToBed/bamToBed.cpp
@@ -187,7 +187,7 @@ void PrintBed(const BamAlignment &bam,  const RefVector &refs, bool useEditDista
 void PrintBedPE(const BamAlignment &bam,  const RefVector &refs, bool useEditDistance) {
 
 	string chrom1, chrom2, strand1, strand2;
-	unsigned int start1, start2, end1, end2;
+	int start1, start2, end1, end2;
 	start1 = start2 = end1 = end2 = -1;
 	chrom1 = chrom2 = strand1 = strand2 = ".";
 	
-- 
GitLab