summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2020-08-16 16:02:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2020-08-28 20:29:27 +0000
commit8754868dbbbc5fa096282df0504aa7880488eeb9 (patch)
treea7c51f5d30ce550091e34ec591fe0b60cfc9e2f5
parent52b0cd67073f2f4665884b5a7decfedeb3b7ca1e (diff)
Mark FreeBlueTblElements label unused in LRGB.c
Quiets gcc 10.2 warning of: src/xcms/LRGB.c: In function ‘LINEAR_RGB_InitSCCData’: src/xcms/LRGB.c:798:1: warning: label ‘FreeBlueTblElements’ defined but not used [https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-label-Wunused-label] 798 | FreeBlueTblElements: | ^~~~~~~~~~~~~~~~~~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/xcms/LRGB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcms/LRGB.c b/src/xcms/LRGB.c
index 4dcec597..a9f23d58 100644
--- a/src/xcms/LRGB.c
+++ b/src/xcms/LRGB.c
@@ -795,7 +795,7 @@ LINEAR_RGB_InitSCCData(
return(XcmsSuccess);
-FreeBlueTblElements:
+FreeBlueTblElements: _X_UNUSED
Xfree(pScreenData->pBlueTbl->pBase);
FreeBlueTbl: