🎨 fix missing parameters (#8977)

Co-authored-by: Heiko Besemann <heiko.besemann@qbeyond.de>
This commit is contained in:
nekrondev 2023-08-15 09:31:19 +02:00 committed by GitHub
parent 3a21a0ffc6
commit f4f8bde3d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -434,7 +434,7 @@ func initLang() {
for k, v := range kernelLangs {
num, err := strconv.Atoi(k)
if nil != err {
logging.LogErrorf("parse language configuration [%s] item [%d] failed [%s] failed: %s", p, num, err)
logging.LogErrorf("parse language configuration [%s] item [%d] failed [%s]", p, num, err)
continue
}
kernelMap[num] = v.(string)