From: Jani Nikula Date: Wed, 13 Oct 2021 14:02:17 +0000 (+0300) Subject: cli: remove enum names from typedefs X-Git-Tag: 0.35_rc0~100 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=f316f7ef6af98b8f89f094dde24e36b837b3c5f2;hp=f316f7ef6af98b8f89f094dde24e36b837b3c5f2;p=notmuch cli: remove enum names from typedefs There are some enum typedefs with the enum name: typedef enum _name_t { ... } name_t; We don't need or use the enum names _name_t for anything, and not all of the enum typedefs have them. We have the typedefs specifically to use the typedef name. Use the anonymous enum in the typedefs: typedef enum { ... } name_t; ---