Skip to content

Commit

Permalink
Typo in bufferedReader allocation
Browse files Browse the repository at this point in the history
  • Loading branch information
dzerbino committed Nov 4, 2014
1 parent 0973ce1 commit e9becb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bufferedReader.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static BlockData * createBlockData() {
new->chrom = (char **) calloc(BLOCK_SIZE, sizeof(char*));
new->start = (int *) calloc(BLOCK_SIZE, sizeof(int));
new->finish = (int *) calloc(BLOCK_SIZE, sizeof(int));
new->value = (int *) calloc(BLOCK_SIZE, sizeof(double));
new->value = (double *) calloc(BLOCK_SIZE, sizeof(double));
return new;
}

Expand Down

0 comments on commit e9becb2

Please sign in to comment.