From bc6ad3ee4312f616851fa59651ea7937420658b4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 17 Apr 2024 21:45:51 -0400 Subject: [PATCH] dialog: convert_ext_list had parameter names in wrong order in header. --- src/dialog/SDL_dialog_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialog/SDL_dialog_utils.h b/src/dialog/SDL_dialog_utils.h index ed9fd3111..8f4a49bf0 100644 --- a/src/dialog/SDL_dialog_utils.h +++ b/src/dialog/SDL_dialog_utils.h @@ -49,7 +49,7 @@ char *convert_filter(const SDL_DialogFileFilter filter, NameTransform ntf, /* Converts the extenstion list of a filter into a single string. */ /* [extension]{[extension]...} */ char *convert_ext_list(const char *list, const char *prefix, - const char *suffix, const char *separator); + const char *separator, const char *suffix); /* Must be used if convert_* functions aren't used */ /* Returns an error message if there's a problem, NULL otherwise */