cmd: fix bad temp var name in B_COMMAND_USAGE()

This commit is contained in:
2024-10-27 14:21:05 +00:00
parent 787c311041
commit f07e11ce60

View File

@@ -90,8 +90,8 @@
b_command_arg_set_allowed_values(this_arg, allowed_values)
#define B_COMMAND_USAGE() \
b_command_usage *usage_##__LINE__ = b_command_add_usage(this_cmd); \
this_usage = usage_##__LINE__; \
b_command_usage *z__b_unique_name() = b_command_add_usage(this_cmd); \
this_usage = z__b_unique_name(); \
if (this_usage)
#define B_COMMAND_USAGE_OPT(opt_id) \