Skip to content

Commit

Permalink
r765: fixed a declaration error
Browse files Browse the repository at this point in the history
Reported by Andreas Tile from Debian
  • Loading branch information
lh3 committed May 13, 2014
1 parent 08517ac commit 0168f39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CC= gcc
#CC= clang --analyze
CFLAGS= -g -Wall -Wno-unused-function -O2
CFLAGS= -g -Wall -Wextra -Wno-unused-function -O2
WRAP_MALLOC=-DUSE_MALLOC_WRAPPERS
AR= ar
DFLAGS= -DHAVE_PTHREAD $(WRAP_MALLOC)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ settings:

####Why does a read appear multiple times in the output SAM?

BWA-SW and BWA-MEM perform local alignments.
BWA-SW and BWA-MEM perform local alignments.

####How to map sequences to GRCh38 with ALT contigs?

Expand Down
2 changes: 1 addition & 1 deletion bwt_lite.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# include "malloc_wrap.h"
#endif

int is_sa(const uint8_t *T, uint32_t *SA, int n);
int is_sa(const uint8_t *T, int *SA, int n);
int is_bwt(uint8_t *T, int n);

bwtl_t *bwtl_seq2bwtl(int len, const uint8_t *seq)
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "utils.h"

#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.8-r764-dirty"
#define PACKAGE_VERSION "0.7.8-r765-dirty"
#endif

int bwa_fa2pac(int argc, char *argv[]);
Expand Down

0 comments on commit 0168f39

Please sign in to comment.