silence warning about bestrow used uninitialized

Signed-off-by: Loic Dachary <loic@dachary.org>
master
Loic Dachary 2014-03-30 10:55:46 +02:00
parent 6052a15ef9
commit cdc99aadc9
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); */