Skip to content

Commit

Permalink
r19: changed the default view buf size to 64MB
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Aug 11, 2016
1 parent 4de7542 commit 741f3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabtk.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ int main_view(int argc, char *argv[])
vec32_t max = {0,0,0};
vecstr_t buf = {0,0,0};
int c, dret, skip_char = -1, sep = '\t', out_sep = '\t', tlen = INT_MAX;
uint64_t tot_mem = 0, max_mem = 16 * 1024 * 1024;
uint64_t tot_mem = 0, max_mem = 64 * 1024 * 1024;
gzFile fp;
kstream_t *ks;
kstring_t str = {0,0,0};
Expand Down Expand Up @@ -574,7 +574,7 @@ int main_view(int argc, char *argv[])

static int usage()
{
fprintf(stderr, "Usage: tabtk-r%d <command> [arguments]\n", 18);
fprintf(stderr, "Usage: tabtk-r%d <command> [arguments]\n", 19);
fprintf(stderr, "Commands:\n");
fprintf(stderr, " cut Unix cut with optional column reordering\n");
fprintf(stderr, " num summary statistics on a single numerical column\n");
Expand Down

0 comments on commit 741f3f0

Please sign in to comment.