Correct fmt printf error in bazel_handler

When running tests locally, it fails to build due to using the incorrect
formatting.

Test: go test soong test
Change-Id: Iccdc3fbc93e409d74f1b71d929dd9650492b401d
This commit is contained in:
Liz Kammer 2021-03-04 09:45:21 -05:00
parent f8dcf5ead2
commit 15b04e2cbd

View file

@ -441,7 +441,7 @@ phony_root(name = "phonyroot",
case "arm":
deps_arm = append(deps_arm, labelString)
default:
panic(fmt.Sprintf("unhandled architecture %s for %s", getArchString(val), val))
panic(fmt.Sprintf("unhandled architecture %s for %v", getArchString(val), val))
}
}