Skip to content

Commit

Permalink
Merge pull request #604 from ivmaykov/fix-ncipher-build-break
Browse files Browse the repository at this point in the history
[core] fix build break when cross-compiling for nCipher target
  • Loading branch information
ivmaykov authored May 13, 2023
2 parents bf66b6c + 690dec9 commit d9e179e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/checks/self_checks.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ typedef struct self_check_function_info {
} self_check_function_info;

#define MAX_SELF_CHECKS ((size_t) 128)
static self_check_function_info self_checks[MAX_SELF_CHECKS] = { 0 };
static self_check_function_info self_checks[MAX_SELF_CHECKS] = { { 0 } };
static size_t self_checks_count = 0;
static bool self_checks_registered = false;

Expand Down

0 comments on commit d9e179e

Please sign in to comment.