1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/ztimer: fix typo in debug output

This commit is contained in:
Marian Buschsieweke 2023-05-01 21:30:04 +02:00
parent c3500eb6e0
commit 8fbbc40b3e
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -165,7 +165,7 @@ void ztimer_mock_init(ztimer_mock_t *self, unsigned width)
self->running = 1;
#endif
DEBUG("zmock_init: %p width=%u mask=0x%08" PRIx32 " runnnig=%u\n", (void *)self, width,
DEBUG("zmock_init: %p width=%u mask=0x%08" PRIx32 " running=%u\n", (void *)self, width,
self->mask, self->running);
if (max_value < UINT32_MAX) {
self->super.ops->set(&self->super, self->super.max_value >> 1);