util/queue.lua
changeset 12979 d10957394a3c
parent 11118 6a608ecb3471
--- a/util/queue.lua	Fri Mar 17 16:23:12 2023 +0100
+++ b/util/queue.lua	Fri Mar 17 16:23:16 2023 +0100
@@ -9,7 +9,7 @@
 -- Small ringbuffer library (i.e. an efficient FIFO queue with a size limit)
 -- (because unbounded dynamically-growing queues are a bad thing...)
 
-local have_utable, utable = pcall(require, "util.table"); -- For pre-allocation of table
+local have_utable, utable = pcall(require, "prosody.util.table"); -- For pre-allocation of table
 
 local function new(size, allow_wrapping)
 	-- Head is next insert, tail is next read