diff options
Diffstat (limited to 'src/aio_event.h')
-rw-r--r-- | src/aio_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aio_event.h b/src/aio_event.h index 7fcb69469..d51d02b3b 100644 --- a/src/aio_event.h +++ b/src/aio_event.h @@ -50,13 +50,13 @@ gint rspamd_aio_open (struct aio_context *ctx, const gchar *path, int flags); /** * Asynchronous read of file */ -gint rspamd_aio_read (gint fd, gpointer buf, gsize len, off_t offset, +gint rspamd_aio_read (gint fd, gpointer buf, gsize len, guint64 offset, struct aio_context *ctx, rspamd_aio_cb cb, gpointer ud); /** * Asynchronous write of file */ -gint rspamd_aio_write (gint fd, gpointer buf, gsize len, off_t offset, +gint rspamd_aio_write (gint fd, gpointer buf, gsize len, guint64 offset, struct aio_context *ctx, rspamd_aio_cb cb, gpointer ud); /** |