Skip to content

Commit 338ca3b

Browse files
jeplerdpgeorge
authored andcommitted
unix/coverage: Remove unused printf arguments.
Signed-off-by: Jeff Epler <[email protected]>
1 parent aa9152a commit 338ca3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ports/unix/coverage.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ static mp_obj_t extra_coverage(void) {
212212
mp_printf(&mp_plat_print, "%llu\n", ULLONG_MAX); // unsigned long long
213213
} else {
214214
// fake for platforms without narrower mp_int_t
215-
mp_printf(&mp_plat_print, "7fffffffffffffff\n", LLONG_MAX);
216-
mp_printf(&mp_plat_print, "7FFFFFFFFFFFFFFF\n", LLONG_MAX);
217-
mp_printf(&mp_plat_print, "18446744073709551615\n", ULLONG_MAX);
215+
mp_printf(&mp_plat_print, "7fffffffffffffff\n");
216+
mp_printf(&mp_plat_print, "7FFFFFFFFFFFFFFF\n");
217+
mp_printf(&mp_plat_print, "18446744073709551615\n");
218218
}
219219
mp_printf(&mp_plat_print, "%p\n", (void *)0x789f); // pointer
220220
mp_printf(&mp_plat_print, "%P\n", (void *)0x789f); // pointer uppercase

0 commit comments

Comments
 (0)