Skip to content

Commit

Permalink
Fix missing semicolon when compiling with SOURCE_DATE_EPOCH
Browse files Browse the repository at this point in the history
  • Loading branch information
jnahmias authored and smcameron committed Feb 1, 2021
1 parent cd06d3c commit eae265e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stamp.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int main(int argc, char *argv[])
exit(1);
}
printf("static int builder = 0;\n");
printf("static uint64_t builtat = %" PRIu64 "\n", value);
printf("static uint64_t builtat = %" PRIu64 ";\n", value);
exit(0);
}

Expand Down

0 comments on commit eae265e

Please sign in to comment.