Changing K and M in data.go to match new datatype in erasure package

This commit is contained in:
Frederick F. Kautz IV 2015-03-01 01:28:11 -08:00
parent 33601ff567
commit be12a6b3d9
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ const (
type EncoderParams struct {
Length int
K int
M int
K uint8
M uint8
Technique EncoderTechnique
}