Sfoglia il codice sorgente

tests/perfmodels/user_base.c: fix function return type

Nathalie Furmento 11 anni fa
parent
commit
292f8101d8
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      tests/perfmodels/user_base.c

+ 1 - 1
tests/perfmodels/user_base.c

@@ -29,7 +29,7 @@ size_t get_size_base(struct starpu_task *task, unsigned nimpl)
 	return 3;
 };
 
-size_t get_footprint(struct starpu_task *task)
+uint32_t get_footprint(struct starpu_task *task)
 {
 	uint32_t orig = starpu_task_data_footprint(task);
 	return starpu_hash_crc32c_be(42, orig);