From c5f93b65f7ed70fe361e8a6654bbd3ee299005de Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Sun, 25 Jan 2026 16:19:45 +0000 Subject: fix!: breaking: LS_ARG_ enum -> LS_ARGS_ enum this is only technically breaking as no API is using this type properly yet --- ls_args.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ls_args.h b/ls_args.h index 21ea63a..dcf0743 100644 --- a/ls_args.h +++ b/ls_args.h @@ -87,8 +87,8 @@ #endif typedef enum ls_args_mode { - LS_ARG_OPTIONAL = 0, - LS_ARG_REQUIRED = 1 + LS_ARGS_OPTIONAL = 0, + LS_ARGS_REQUIRED = 1 } ls_args_mode; typedef enum ls_args_type { -- cgit