diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2026-04-24 14:49:17 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2026-04-24 14:49:17 -0400 |
| commit | 54a248fba0e37f125a99d436ff73253855f78455 (patch) | |
| tree | 1f90edc69d94a689e96c5a58750e3701374b502c /src | |
| parent | 3d52f9d78bb8be0246b720f89457c90eb5fa3b06 (diff) | |
printf typo, %ll -> %li for clock accuracy
Diffstat (limited to 'src')
| -rwxr-xr-x | src/spreed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spreed.c b/src/spreed.c index cd9d24a..48af6cd 100755 --- a/src/spreed.c +++ b/src/spreed.c @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) wpm_ns = MS_PER_MIN / wpm_ns; } - fwprintf(stdout, L"Clock (%i) accuracy: %ll.%09lls\n", SPRD_CLOCK, ts_last.tv_sec, ts_last.tv_nsec); + fwprintf(stdout, L"Clock (%i) accuracy: %li.%09lls\n", SPRD_CLOCK, ts_last.tv_sec, ts_last.tv_nsec); fwprintf(stdout, L" V\n"); clock_gettime(SPRD_CLOCK, &ts_current); |
