diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-09 22:44:46 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-09 22:44:46 +0530 |
commit | e27a70f4dbc835c7dcdb840e70999fafaf2be28a (patch) | |
tree | d680614eef055293a91ef977a5910f3d2efa6eda /include | |
parent | 1197c736a0cc8551974a5dfbef1a114007f9c046 (diff) |
engine: eachdo: priority should be int, not size_t
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/engine.h b/include/engine.h index 5d98019..1d19ec5 100644 --- a/include/engine.h +++ b/include/engine.h @@ -39,7 +39,7 @@ typedef struct { */ typedef struct { char *content; - size_t priority; + int priority; } atom_t; engine_t *engine_ingest(char **buffer); |