Skip to content

Commit df6731f

Browse files
committed
Use block_t when possible
1 parent 0c4d7c0 commit df6731f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decode.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ typedef struct block {
255255
typedef struct {
256256
uint32_t block_capacity; /**< max number of entries in the block map */
257257
uint32_t size; /**< number of entries currently in the map */
258-
struct block **map; /**< block map */
258+
block_t **map; /**< block map */
259259
} block_map_t;
260260

261261
/* clear all block in the block map */

0 commit comments

Comments
 (0)