From fa40cc9e3afa7d94cecc92f393eaf9dd9cd30272 Mon Sep 17 00:00:00 2001 From: PatR Date: Sat, 5 Mar 2022 00:31:36 -0800 Subject: [PATCH] ll_achieve_msg.llflag Fix another type mismatch with the livelog code; make the flags field in ll_achieve_msg match the one in gavelog_line. --- src/insight.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insight.c b/src/insight.c index 5968df39d..f41d77d24 100644 --- a/src/insight.c +++ b/src/insight.c @@ -46,7 +46,7 @@ static const char have_been[] = "have been ", have_never[] = "have never ", /* for livelogging: */ struct ll_achieve_msg { - unsigned long llflag; + long llflag; const char *msg; }; /* ordered per 'enum achievements' in you.h */ -- 2.50.1