Merged in dachary/jerasure/wip-warning-unused (pull request #14)

silence warning about bestrow used uninitialized
master
Kevin Greenan 2014-03-31 08:22:43 -07:00
commit ca21b17557
1 changed files with 1 additions and 1 deletions

View File

@ -1240,7 +1240,7 @@ int **jerasure_smart_bitmatrix_to_schedule(int k, int m, int w, int *bitmatrix)
int *diff, *from, *b1, *flink, *blink;
int *ptr, no, row;
int optodo;
int bestrow, bestdiff, top;
int bestrow = 0, bestdiff, top;
/* printf("Scheduling:\n\n");
jerasure_print_bitmatrix(bitmatrix, m*w, k*w, w); */