On Thu, Aug 06, 2026 at 09:47:33PM -0300, Ricardson wrote: > Updated patch attached, using the explicit long long cast as suggested.
This is ok, but I think it's cleaner to change the type given the
uses of LLONG_MIN/MAX, %lld:
diff --git a/app/cwm/parse.y b/app/cwm/parse.y
index 7290dbad8c..095d3a2e54 100644
--- a/app/cwm/parse.y
+++ b/app/cwm/parse.y
@@ -60,7 +60,7 @@ static struct conf *conf;
typedef struct {
union {
- int64_t number;
+ long long number;
char *string;
} v;
int lineno;

