1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 08:21:18 +01:00

Merge pull request #9615 from miri64/tests/enh/periph_pwm_puts

tests: use literal string instead of format string for interval
This commit is contained in:
Gaëtan Harter 2018-07-24 18:00:42 +02:00 committed by GitHub
commit 1fb6aa0421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ static int _init(int argc, char** argv)
puts("\t\t1: right aligned\n");
puts("\t\t2: center aligned\n");
puts("\tfrequency: desired frequency in Hz\n");
printf("\tresolution: number between 2 and %" PRIu16 "\n", UINT16_MAX);
puts("\tresolution: number between 2 and 65535");
return 1;
}