Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 15b04e2c authored by Liz Kammer's avatar Liz Kammer
Browse files

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
parent f8dcf5ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -441,7 +441,7 @@ phony_root(name = "phonyroot",
		case "arm":
		case "arm":
			deps_arm = append(deps_arm, labelString)
			deps_arm = append(deps_arm, labelString)
		default:
		default:
			panic(fmt.Sprintf("unhandled architecture %s for %s", getArchString(val), val))
			panic(fmt.Sprintf("unhandled architecture %s for %v", getArchString(val), val))
		}
		}
	}
	}