authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2019-09-10 14:35:51-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-10 14:38:39-04:00
log68d159ea9de5b9f59ad2e658017c45a33698a008
treed8ff9bb6996659b977dcaec5a5344f29898852d6
parentba4d83af3e58ce2a34ccb945a297211333fd904c

fix build on macOS + xcode + clang


1 files changed, 1 insertions(+), 1 deletions(-)

src/stack_report.cpp+1-1
......@@ -95,7 +95,7 @@ static void tree_print(FILE *f, ZigType *ty, size_t indent) {
9595 fprintf(f, "\"");
9696
9797 start_peer(f, indent);
98 fprintf(f, "\"size\": \"%" ZIG_PRI_u64 "\"", ty->abi_size);
98 fprintf(f, "\"size\": \"%" ZIG_PRI_usize "\"", ty->abi_size);
9999
100100 switch (ty->id) {
101101 case ZigTypeIdFnFrame: