dialog_utils: fix NameTransform() function pointer type (#15002)

This commit is contained in:
RaceTheMaSe
2026-02-07 21:23:47 +01:00
committed by GitHub
parent f07ba5b954
commit c15ca27740

View File

@@ -28,7 +28,7 @@
/* Transform the name given in argument into something viable for the engine.
Useful if there are special characters to avoid on certain platforms (such
as "|" with Zenity). */
typedef char *(NameTransform)(const char * name);
typedef char *(*NameTransform)(const char * name);
// Converts all the filters into a single string.
// <prefix>[filter]{<separator>[filter]...}<suffix>