Fix message printed when not launching ESVM from PID 1

This commit is contained in:
EnumDev 2025-03-10 15:31:03 +02:00
parent 23f5b27eb1
commit 304532d62a

View File

@ -75,7 +75,7 @@ func main() {
}
if os.Getppid() != 1 {
fmt.Println("Enit must be run by PID 1!")
fmt.Println("Esvm must be run by PID 1!")
os.Exit(1)
}