comparison util/smqueue.lua @ 14008:21126415c8a0

util.smqueue: Fix syntax error in df970d2dac45 from bad merge (thanks Link Mauve)
author Matthew Wild <mwild1@gmail.com>
date Sun, 07 Dec 2025 10:17:32 +0000
parents df970d2dac45
children 1e01b91cf94d
comparison
equal deleted inserted replaced
14007:8fb7408ded73 14008:21126415c8a0
62 table.insert(self._checkpoints, { self._head, cb, ud }); 62 table.insert(self._checkpoints, { self._head, cb, ud });
63 if not self._next_checkpoint then 63 if not self._next_checkpoint then
64 self._next_checkpoint = self._head; 64 self._next_checkpoint = self._head;
65 end 65 end
66 end 66 end
67 };
68 67
69 function smqueue:_call_checkpoints(h) 68 function smqueue:_call_checkpoints(h)
70 local checkpoints = self._checkpoints; 69 local checkpoints = self._checkpoints;
71 70
72 -- Pop the checkpoint info and update the next checkpoint info 71 -- Pop the checkpoint info and update the next checkpoint info