From e42d83d20800215098e2afdd5d238dd97b678f4c Mon Sep 17 00:00:00 2001 From: a00817524 Date: Fri, 8 Sep 2023 19:43:03 +0000 Subject: [PATCH] build failure --- src/ae.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ae.h b/src/ae.h index 6babc3a58..8ef48670f 100644 --- a/src/ae.h +++ b/src/ae.h @@ -72,7 +72,6 @@ extern "C" { #define AE_NOTUSED(V) ((void) V) struct aeEventLoop; - /* Types and data structures */ typedef void aeFileProc(struct aeEventLoop *eventLoop, int fd, void *clientData, int mask); typedef int aeTimeProc(struct aeEventLoop *eventLoop, long long id, void *clientData); @@ -81,7 +80,7 @@ typedef void aeBeforeSleepProc(struct aeEventLoop *eventLoop); typedef void aePostFunctionProc(void *pvArgs); //added to support async api IStorage struct StorageToken; -typedef void aePostFunctionTokenProc(aeEventLoop *el, StorageToken *token); +typedef void aePostFunctionTokenProc(struct aeEventLoop *el, StorageToken *token); /* File event structure */ typedef struct aeFileEvent {