From 3ebcdb43fb74f9a4947caa814032debc783d4c14 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sun, 1 Sep 2024 10:59:07 +0200 Subject: [PATCH] Fixed copy-paste error in previous commit --- src/mhd2/action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mhd2/action.c b/src/mhd2/action.c index c104ab88..b3cacf6c 100644 --- a/src/mhd2/action.c +++ b/src/mhd2/action.c @@ -167,7 +167,7 @@ MHD_upload_action_from_response (struct MHD_Request *request, struct MHD_UploadAction *const restrict upl_act = &(request->app_act.upl_act); if (NULL == response) - return (const struct MHD_Action *) NULL; + return (const struct MHD_UploadAction *) NULL; if (mhd_UPLOAD_ACTION_NO_ACTION != upl_act->act) return (const struct MHD_UploadAction *) NULL;