Browse Source

fix warning

Samuel Thibault 10 years ago
parent
commit
2480cd9106
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/cholesky/cholesky_implicit.c

+ 1 - 1
examples/cholesky/cholesky_implicit.c

@@ -127,7 +127,7 @@ static int _cholesky(starpu_data_handle_t dataA, unsigned nblocks)
 			PRINTF("\tTms\tTGFlops");
 		PRINTF("\n");
 
-		PRINTF("%u\t%.0f\t%.1f", n, timing/1000, (flop/timing/1000.0f));
+		PRINTF("%lu\t%.0f\t%.1f", n, timing/1000, (flop/timing/1000.0f));
 		if (bound_lp)
 		{
 			FILE *f = fopen("cholesky.lp", "w");