fixed incorrect symbols in the output file when using the --noise parameter

This commit is contained in:
GenZmeY 2020-11-02 20:41:21 +03:00
parent 46e27d62e9
commit b5518cac1c

View File

@ -167,7 +167,7 @@ func calcRanges(hashes map[string]string, Threshold int) string {
var rangeNoise string = ""
if ArgDefaultNoiseLevel >= 0 {
rangeNoise = "\t" + string(ArgDefaultNoiseLevel)
rangeNoise = "\t" + strconv.Itoa(ArgDefaultNoiseLevel)
}
names := []string{}