From: Xenia Ragiadakou Date: Wed, 6 Jul 2022 11:07:43 +0000 (+0200) Subject: xen/time: fix MISRA C 2012 Rule 8.7 violation X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~478 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=46cbd76faf737e9fe2d57aaf335a0203f66ba21c;p=xen.git xen/time: fix MISRA C 2012 Rule 8.7 violation The variable __mon_lengths is referenced only in time.c. Change its linkage from external to internal by adding the storage-class specifier static to its definitions. Also, this patch resolves indirectly a MISRA C 2012 Rule 8.4 violation warning. Signed-off-by: Xenia Ragiadakou Acked-by: Julien Grall --- diff --git a/xen/common/time.c b/xen/common/time.c index 22379f4ae2..92f7b72464 100644 --- a/xen/common/time.c +++ b/xen/common/time.c @@ -28,7 +28,7 @@ ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0)) /* How many days are in each month. */ -const unsigned short int __mon_lengths[2][12] = { +static const unsigned short int __mon_lengths[2][12] = { /* Normal years. */ {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, /* Leap years. */