From 9be285ade6dfdccce6e4fcd4d6ab3651f0f21353 Mon Sep 17 00:00:00 2001 From: Leonardo Fagundes Luz Serrano Date: Wed, 14 Aug 2024 21:18:22 -0300 Subject: [PATCH] Fix stx-fm-subagent image build failure stx-fm-subagent docker image was failing to build due to an issue with the one constant was being defined. Test Plan: pass - build fm-common and fm-common-dev pkgs pass - build stx-fm-subagent docker image Closes-Bug: 2077016 Change-Id: I8eed4cf4e3d1c46d459d58298cac7d6b04a94d0f Signed-off-by: Leonardo Fagundes Luz Serrano --- fm-common/sources/fmAPI.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fm-common/sources/fmAPI.h b/fm-common/sources/fmAPI.h index 6da064e5..135c2b11 100644 --- a/fm-common/sources/fmAPI.h +++ b/fm-common/sources/fmAPI.h @@ -27,7 +27,7 @@ typedef unsigned char FMBoolTypeT; #define FM_FALSE 0 -static const size_t DEF_MAX_ALARMS (1000); +static const size_t DEF_MAX_ALARMS = 1000; typedef enum{ FM_ALARM_STATE_CLEAR = 0,