fix wrong coding
This commit is contained in:
parent
1f41c24001
commit
b3197b61e9
2
PKGBUILD
2
PKGBUILD
|
@ -1,6 +1,6 @@
|
||||||
# Maintainer: surefire@cryptomile.net
|
# Maintainer: surefire@cryptomile.net
|
||||||
pkgname=cpu_ctrl
|
pkgname=cpu_ctrl
|
||||||
pkgver=0+be2e961+
|
pkgver=0+1f41c24+
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="ipmi cpu fan control with core sensor"
|
pkgdesc="ipmi cpu fan control with core sensor"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
|
2
main.go
2
main.go
|
@ -202,7 +202,7 @@ func main() {
|
||||||
return
|
return
|
||||||
case err:= <-errorChan:
|
case err:= <-errorChan:
|
||||||
canceled()
|
canceled()
|
||||||
fmt.Printf("error! %s", error.Error())
|
fmt.Printf("error! %s", err.Error())
|
||||||
case sysSignal := <-exitSignal:
|
case sysSignal := <-exitSignal:
|
||||||
canceled()
|
canceled()
|
||||||
fmt.Printf("SYSCALL! %s", sysSignal.String())
|
fmt.Printf("SYSCALL! %s", sysSignal.String())
|
||||||
|
|
Loading…
Reference in New Issue