]> git.donarmstrong.com Git - samtools.git/commitdiff
change printf() to puts in exporting
authorHeng Li <lh3@live.co.uk>
Tue, 15 Jun 2010 14:17:53 +0000 (14:17 +0000)
committerHeng Li <lh3@live.co.uk>
Tue, 15 Jun 2010 14:17:53 +0000 (14:17 +0000)
ChangeLog
bam.c

index 9c6c299f4a1e6cc7bd6ef382b395fd2f50d01668..9b58a9e70672b20c098b0b4c9c1c30e7c2de2261 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+------------------------------------------------------------------------
+r599 | lh3lh3 | 2010-06-13 21:41:11 -0400 (Sun, 13 Jun 2010) | 2 lines
+Changed paths:
+   M /trunk/samtools/bamtk.c
+
+minor fix. No actual effect.
+
+------------------------------------------------------------------------
+r598 | lh3lh3 | 2010-06-13 21:32:45 -0400 (Sun, 13 Jun 2010) | 2 lines
+Changed paths:
+   M /trunk/samtools/Makefile
+
+added Makefile targets to compile shared/dynamic library
+
+------------------------------------------------------------------------
+r596 | lh3lh3 | 2010-06-13 19:48:07 -0400 (Sun, 13 Jun 2010) | 3 lines
+Changed paths:
+   M /trunk/samtools/ChangeLog
+   M /trunk/samtools/bam_index.c
+   M /trunk/samtools/bamtk.c
+
+ * samtools-0.1.7-17 (r596)
+ * also keep the number of coor-less reads in the index file
+
 ------------------------------------------------------------------------
 r595 | lh3lh3 | 2010-06-13 18:54:26 -0400 (Sun, 13 Jun 2010) | 3 lines
 Changed paths:
diff --git a/bam.c b/bam.c
index aa96bb58a1c53973031c311c2a8cf9459c0372d4..94b0aa8bb85bef4ae4a787af3337f1765ed8899e 100644 (file)
--- a/bam.c
+++ b/bam.c
@@ -293,7 +293,7 @@ char *bam_format1(const bam_header_t *header, const bam1_t *b)
 void bam_view1(const bam_header_t *header, const bam1_t *b)
 {
        char *s = bam_format1(header, b);
-       printf("%s\n", s);
+       puts(s);
        free(s);
 }