Commit c11361e2 authored by Shenghou Ma's avatar Shenghou Ma Committed by Robert Griesemer

exp/norm: fix typo

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5649086
parent 9126c657
......@@ -675,7 +675,7 @@ func printCharInfoTables() int {
if c.ccc != ccc(d[0]) {
// We assume the lead ccc of a decomposition !=0 in this case.
if ccc(d[0]) == 0 {
logger.Fatal("Expected leading CCC to be non-zero; ccc is %d", c.ccc)
logger.Fatalf("Expected leading CCC to be non-zero; ccc is %d", c.ccc)
}
}
} else if v := makeEntry(&f)<<8 | uint16(c.ccc); v != 0 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment