Tweak printf format string to eliminate compile warning

This commit is contained in:
Wes Bethel 2023-08-01 13:59:34 -07:00
parent d96c12ed67
commit ddcd8bc075

View File

@ -34,7 +34,7 @@ int main(int argc, char** argv)
/* For each test size */
for (int64_t n : problem_sizes)
{
printf("Working on problem size N=%d \n", n);
printf("Working on problem size N=%lld \n", n);
// invoke user code to set up the problem
setup(n, &A[0]);