Skip to content

Commit 9a88b73

Browse files
committed
Fix printf type
1 parent 7d23658 commit 9a88b73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/bindGen/exipb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main(int argc, char *argv[])
6767
}
6868

6969
printf("Success! Generated %u TreeTable(s)\n", treeTCount);
70-
printf("Schema has %u namespaces\n", schema.uriTable.count);
70+
printf("Schema has %zu namespaces\n", schema.uriTable.count);
7171

7272
// Cleanup
7373
for (unsigned int i = 0; i < treeTCount; i++) {

0 commit comments

Comments
 (0)