From 107e9cc8082b7a8a97647bdc05b5810722c94b34 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 18 May 2025 21:40:31 +0200 Subject: [PATCH] play.c: Kill pointless typedef. The signature of the function pointer is too simple to warrant a typedef. --- play.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/play.c b/play.c index ca9ce34f..df06b1cc 100644 --- a/play.c +++ b/play.c @@ -95,9 +95,8 @@ struct play_task { char *afhi_txt; }; -typedef int (*play_cmd_handler_t)(struct lls_parse_result *lpr); struct play_command_info { - play_cmd_handler_t handler; + int (*handler)(struct lls_parse_result *lpr); }; static int loglevel = LL_WARNING; -- 2.39.5