libctf testsuite compilation failure

* testsuite/libctf-regression/open-error-free.c (main): Correct
	format length modifier.
This commit is contained in:
Alan Modra
2024-05-22 08:46:17 +09:30
parent b013bd1663
commit 4ce8b69ddd

View File

@@ -165,7 +165,7 @@ int main (void)
fprintf (stderr, "Memory leak is present: %lli allocations (%lli allocations, %lli frees).\n",
frozen_malloc_count - frozen_free_count, frozen_malloc_count, frozen_free_count);
else if (frozen_malloc_count < frozen_free_count)
fprintf (stderr, "Possible double-free: %li allocations, %li frees.\n",
fprintf (stderr, "Possible double-free: %lli allocations, %lli frees.\n",
frozen_malloc_count, frozen_free_count);
printf ("All OK.\n");