Skip to content

Commit a5a8ece

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f6eb2e7 commit a5a8ece

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/libImaging/QuantHash.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ typedef uint32_t HashVal_t;
2020

2121
typedef uint32_t (*HashFunc)(const HashTable *, const HashKey_t);
2222
typedef int (*HashCmpFunc)(const HashTable *, const HashKey_t, const HashKey_t);
23-
typedef void (*IteratorFunc)(const HashTable *, const HashKey_t, const HashVal_t, void *);
24-
typedef void (*IteratorUpdateFunc)(const HashTable *, const HashKey_t, HashVal_t *, void *);
23+
typedef void (*IteratorFunc)(
24+
const HashTable *, const HashKey_t, const HashVal_t, void *
25+
);
26+
typedef void (*IteratorUpdateFunc)(
27+
const HashTable *, const HashKey_t, HashVal_t *, void *
28+
);
2529
typedef void (*ComputeFunc)(const HashTable *, const HashKey_t, HashVal_t *);
2630
typedef void (*CollisionFunc)(
2731
const HashTable *, HashKey_t *, HashVal_t *, HashKey_t, HashVal_t

0 commit comments

Comments
 (0)