Fix message printed when not launching ESVM from PID 1

This commit is contained in:
2025-03-10 15:31:03 +02:00
parent 23f5b27eb1
commit 304532d62a
+1 -1
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)
}