diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-07-19 11:12:58 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-07-29 16:35:30 -0400 |
commit | e2f483aea3a9eb885a410b264916ffb711daccfa (patch) | |
tree | 24bea695e8f87b49a481486652e507ea2e067373 /klippy/chelper/trapq.h | |
parent | d1b41ea4a1e1419c83aa1bfad31d24a51ff533ff (diff) | |
download | kutter-e2f483aea3a9eb885a410b264916ffb711daccfa.tar.gz kutter-e2f483aea3a9eb885a410b264916ffb711daccfa.tar.xz kutter-e2f483aea3a9eb885a410b264916ffb711daccfa.zip |
trapq: Rename trapq_free_moves() to trapq_finalize_moves()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/trapq.h')
-rw-r--r-- | klippy/chelper/trapq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/chelper/trapq.h b/klippy/chelper/trapq.h index 94590061..a930a2e1 100644 --- a/klippy/chelper/trapq.h +++ b/klippy/chelper/trapq.h @@ -36,6 +36,6 @@ struct trapq *trapq_alloc(void); void trapq_free(struct trapq *tq); void trapq_check_sentinels(struct trapq *tq); void trapq_add_move(struct trapq *tq, struct move *m); -void trapq_free_moves(struct trapq *tq, double print_time); +void trapq_finalize_moves(struct trapq *tq, double print_time); #endif // trapq.h |