Commit cf873c6e authored by Flavio Ceolin's avatar Flavio Ceolin Committed by Anas Nashif
Browse files

tests: footprints: Cast variable to proper type



Ensuring that a computation is done in the destination precision

Signed-off-by: default avatarFlavio Ceolin <flavio.ceolin@intel.com>
Signed-off-by: default avatarAbramo Bagnara <abramo.bagnara@bugseng.com>
parent 5b6fef09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ void main(void)
	};

	k_mem_domain_init(&footprint_mem_domain,
			  ARRAY_SIZE(mem_parts), mem_parts);
			  (uint8_t)ARRAY_SIZE(mem_parts), mem_parts);
#endif /* CONFIG_USERSPACE */

	run_thread_system();