diff options
author | Rob Austein <sra@hactrn.net> | 2017-05-28 16:11:25 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-05-28 16:11:25 -0400 |
commit | 2caa6c72640877abc5f3572c4d926a23ff672ab1 (patch) | |
tree | 91f74c4a1342e0d0d0add7d0564b26b1f744135c /ks_index.c | |
parent | f59533ee9807832ea5ca7dd5492592c8991a9f34 (diff) |
Almost compiles.
Need to refactor init sequence slightly (again), this time to humor
the bootloader, which has its own special read-only view of the PIN
block in the token keystore.
Diffstat (limited to 'ks_index.c')
-rw-r--r-- | ks_index.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ static inline hal_error_t ks_heapsift(hal_ks_t *ks, int parent, const int end) } } -hal_ks_error_t hal_ks_index_heapsort(hal_ks_t *ks) +hal_error_t hal_ks_index_heapsort(hal_ks_t *ks) { if (ks == NULL || ks->index == NULL || ks->names == NULL) return HAL_ERROR_IMPOSSIBLE; |