Skip to content
Snippets Groups Projects
Commit ff86015a authored by Alexandre Abadie's avatar Alexandre Abadie Committed by GitHub
Browse files

Merge pull request #7854 from kYc0o/fix_isl29125_test

tests/driver_isl29125/main.c: fix counter var type
parents d035ab27 fe9d7db2
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ int main(void)
"ISL29125_MODE_R", "ISL29125_MODE_G", "ISL29125_MODE_B",
"ISL29125_MODE_RG", "ISL29125_MODE_GB"};
for (int i = 0; i < sizeof(modes); i++) {
for (size_t i = 0; i < sizeof(modes); i++) {
printf("Setting mode %s\n", mode_names[i]);
isl29125_set_mode(&dev, modes[i]);
xtimer_usleep(SLEEP);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment