Skip to content

Commit

Permalink
Bug fix: unsignedf -> unsigned (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 authored Jun 14, 2017
1 parent a2896bf commit 64a92a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dwgsim.c
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ void dwgsim_core(dwgsim_opt_t * opt)
name, ext_coor[0]+1, ext_coor[1]+1, strand[0], strand[1], 0, 0,
n_err[0], n_sub[0], n_indel[0],
n_err[1], n_sub[1],n_indel[1],
(unsignedf long long)ii, j+1);
(unsigned long long)ii, j+1);
for (i = 0; i < s[j]; ++i)
fputc("ACGTN"[(int)tmp_seq[j][i]], fpo);
fprintf(fpo, "\n+\n%s\n", qstr);
Expand Down Expand Up @@ -899,7 +899,7 @@ void dwgsim_core(dwgsim_opt_t * opt)
(NULL == opt->read_prefix) ? "" : "_",
name, ext_coor[0]+1, ext_coor[1]+1, strand[0], strand[1], 0, 0,
n_err[0], n_sub[0], n_indel[0], n_err[1], n_sub[1], n_indel[1],
(unsignedf long long)ii);
(unsigned long long)ii);
if(ILLUMINA == opt->data_type || IONTORRENT == opt->data_type) {
for (i = 0; i < s[j]; ++i)
fputc("ACGTN"[(int)tmp_seq[j][i]], opt->fp_bfast);
Expand Down

0 comments on commit 64a92a2

Please sign in to comment.