Skip to content

Commit

Permalink
r258: fixed a harmless gcc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Oct 1, 2024
1 parent 29b2c84 commit 4123356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion miniprot.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define MP_VERSION "0.13-r257-dirty"
#define MP_VERSION "0.13-r258-dirty"

#define MP_F_NO_SPLICE 0x1
#define MP_F_NO_ALIGN 0x2
Expand Down
2 changes: 1 addition & 1 deletion ntseq.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ int32_t mp_ntseq_read_spsc(mp_ntdb_t *nt, const char *fn)
while (ks_getuntil(ks, KS_SEP_LINE, &str, &dret) >= 0) {
mp_spsc_t *s;
char *p, *q, *name = 0;
int32_t i, type = -1, strand = 0, cid = -1, score;
int32_t i, type = -1, strand = 0, cid = -1, score = -1;
int64_t pos = -1;
for (i = 0, p = q = str.s;; ++p) {
if (*p == '\t' || *p == 0) {
Expand Down

0 comments on commit 4123356

Please sign in to comment.