diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-09 09:23:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-09 09:23:54 +0200 |
commit | 9afecc03260a938fa57389ce3adffa5052df8076 (patch) | |
tree | f54a7f2ebe380c3bcfd03558c813c58e704b3b35 /src/run_queue.h | |
parent | msg: add msg_send_from_argv shortcut (diff) | |
download | cimple-9afecc03260a938fa57389ce3adffa5052df8076.tar.gz cimple-9afecc03260a938fa57389ce3adffa5052df8076.zip |
STAILQ -> SIMPLEQ
Diffstat (limited to 'src/run_queue.h')
-rw-r--r-- | src/run_queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run_queue.h b/src/run_queue.h index eca071e..59bc71e 100644 --- a/src/run_queue.h +++ b/src/run_queue.h @@ -21,7 +21,7 @@ void run_destroy(struct run *); const char *run_get_url(const struct run *); const char *run_get_rev(const struct run *); -STAILQ_HEAD(run_queue, run); +SIMPLEQ_HEAD(run_queue, run); void run_queue_create(struct run_queue *); void run_queue_destroy(struct run_queue *); |