pcm: fix string format

This commit is contained in:
Trek H 2019-11-13 12:30:48 +10:30
parent 5e472ba4c9
commit 678245c634
1 changed files with 1 additions and 1 deletions
codec/pcm

View File

@ -293,6 +293,6 @@ func SFFromString(s string) (SampleFormat, error) {
case "FLOAT64_BE":
return FLOAT64_BE, nil
default:
return Unknown, errors.Errorf("Unknown FormatType (%d)", s)
return Unknown, errors.Errorf("Unknown FormatType (%s)", s)
}
}