fix: newline on set brightness log

Noticed by @eric
https://github.com/jetkvm/kvm/pull/17#discussion_r1903338705
This commit is contained in:
Cameron Fleming 2025-01-05 21:13:09 +00:00
parent 1fe71da77d
commit e9b539053b
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ func setDisplayBrightness(brightness int) error {
return err
}
fmt.Printf("display: set brightness to %v", brightness)
fmt.Printf("display: set brightness to %v\n", brightness)
return nil
}