1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 09:21:19 +01:00

Merge pull request #8991 from Hyungsin/forupstream_pulse_counter_fix

sys/auto_init: fix syntax error on auto_init_pulse_counter.c
This commit is contained in:
Kaspar Schleiser 2018-04-23 15:52:12 +02:00 committed by GitHub
commit 5251e140e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ extern saul_driver_t pulse_counter_saul_driver;
void auto_init_pulse_counter(void)
{
assert(PULSE_COUNTER_NUM == PULSE_COUNTER_INFO_NUM)
assert(PULSE_COUNTER_NUM == PULSE_COUNTER_INFO_NUM);
for (unsigned i = 0; i < PULSE_COUNTER_NUM; i++) {
LOG_DEBUG("[auto_init_saul] initializing pulse_counter #%u\n", i);