From 14be6e4abf4cdc244808312549b807d3e2f6ca0d Mon Sep 17 00:00:00 2001 From: Armando Montanez Date: Mon, 10 Jun 2024 14:56:13 -0700 Subject: [PATCH] Fix compile flag typo --- tools/elf2uf2/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/elf2uf2/BUILD.bazel b/tools/elf2uf2/BUILD.bazel index a694319d1..6b5cf56ba 100644 --- a/tools/elf2uf2/BUILD.bazel +++ b/tools/elf2uf2/BUILD.bazel @@ -10,7 +10,7 @@ cc_binary( copts = select({ "@platforms//os:windows": [], "//conditions:default": [ - "-Wno-used-function", + "-Wno-unused-function", "-Wno-reorder-ctor", "-Wno-unused-variable", ],