Skip to content

Commit

Permalink
Enable cross-platform check to pass
Browse files Browse the repository at this point in the history
Looks like `uint64_t` behaves different on apple vs linux
  • Loading branch information
dmohns committed Mar 5, 2024
1 parent aa22b49 commit 910dae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/neutral_example_implentation/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int main(int argc, const char * argv[]) {
Output = GetDataFromToken(InputToken, &TokenCount, &UsedTokens, StartingCode, SECRET_KEY);

#ifdef DEBUG
printf("\n(Token entered: %llu)", InputToken);
printf("\n(Token entered: %llu)", (unsigned long long)InputToken);
printf("\n(Activation Value from Token: %d)", Output.Value); // Activation Value found in the token
printf("\n(Count: %d)", Output.Count); // Count found in the token
printf("\n(Max Count: %d)", TokenCount); // Count found in the token
Expand Down

0 comments on commit 910dae7

Please sign in to comment.