1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

drivers/stmpe811: add ; after DEBUG()

This commit is contained in:
Benjamin Valentin 2021-12-08 21:47:29 +01:00
parent cbc8251874
commit 75a6892480

View File

@ -66,7 +66,7 @@ uint8_t _stmpe811_touches(const touch_dev_t *touch_dev, touch_t *touches, size_t
touches[0].x = pos.y;
touches[0].y = dev->params.xmax - pos.x;
DEBUG("X: %i, Y: %i\n", touches[0].x, touches[0].y)
DEBUG("X: %i, Y: %i\n", touches[0].x, touches[0].y);
}
return ret;