Skip to content

Commit

Permalink
c backend some cleanup, maby fix
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfd committed Jul 22, 2024
1 parent 07db978 commit fbc703c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lotordb/src/keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "hash_tooling.h"
#include "crypto.h"
#include "keys.h"
// 105664 Jul 22 18:27 tests

//
// Clear a
static void clear(u64 *a) {
Expand All @@ -15,7 +15,7 @@ static void clear(u64 *a) {

//
// Count 64bit in a
static int8_t count(const u64 *a) {
static u64 count(const u64 *a) {
for (int8_t i = DIGITS - 1; i >= 0; --i) {
if (a[i] != 0) return (i + 1);
}
Expand Down

0 comments on commit fbc703c

Please sign in to comment.