We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47469a commit a1013a6Copy full SHA for a1013a6
tbx.c
@@ -93,12 +93,11 @@ int tbx_name2id(tbx_t *tbx, const char *ss)
93
94
int tbx_parse1(const tbx_conf_t *conf, int len, char *line, tbx_intv_t *intv)
95
{
96
- int i, b = 0, id = 1, ncols = 0;
+ int i, b = 0, id = 1;
97
char *s;
98
intv->ss = intv->se = 0; intv->beg = intv->end = -1;
99
for (i = 0; i <= len; ++i) {
100
if (line[i] == '\t' || line[i] == 0) {
101
- ++ncols;
102
if (id == conf->sc) {
103
intv->ss = line + b; intv->se = line + i;
104
} else if (id == conf->bc) {
0 commit comments