Merge pull request #510 from pingcap/goroutine/fix-fmt

meta: Fix format arguments
This commit is contained in:
siddontang
2015-11-04 16:07:58 +08:00

View File

@ -68,7 +68,7 @@ func (alloc *allocator) Alloc(tableID int64) (int64, error) {
}
alloc.base++
log.Infof("Alloc id %d, table ID:%d, from %p, database ID:%s", alloc.base, tableID, alloc, alloc.dbID)
log.Infof("Alloc id %d, table ID:%d, from %p, database ID:%d", alloc.base, tableID, alloc, alloc.dbID)
return alloc.base, nil
}