Skip to content

Commit 8ee41a3

Browse files
committed
Fix minor printf type issue.
1 parent 3f7985b commit 8ee41a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/tpm_test_keys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ int readKeyBlob(const char* filename, WOLFTPM2_KEYBLOB* key)
107107

108108
bytes_read = XFREAD(pubAreaBuffer, 1, sizeof(UINT16) + key->pub.size, fp);
109109
if (bytes_read != sizeof(UINT16) + key->pub.size) {
110-
printf("Read %zu, expected public blob %lu bytes\n",
110+
printf("Read %zu, expected public blob %zu bytes\n",
111111
bytes_read, sizeof(UINT16) + key->pub.size);
112112
goto exit;
113113
}

0 commit comments

Comments
 (0)