Skip to content

Commit 883b465

Browse files
committed
Fix format
1 parent 549b2ac commit 883b465

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/test_gpu.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ SENTRY_TEST(gpu_info_basic)
4343
}
4444
if (gpu_info->memory_size > 0) {
4545
has_info = true;
46-
printf(" Memory Size: %" PRIu64 " bytes\n", gpu_info->memory_size);
46+
printf(" Memory Size: %" PRIu64 " bytes\n",
47+
gpu_info->memory_size);
4748
}
4849
}
4950

0 commit comments

Comments
 (0)