Renamed 'printAndExit' to 'printErrAndExit'

This commit is contained in:
2024-08-10 11:29:18 -05:00
parent 2a007ba56c
commit 7feac0b5f7
3 changed files with 8 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ import (
"os"
)
func printAndExit(errorStr string) {
func printErrAndExit(errorStr string) {
fmt.Printf("ERROR: %s\n", errorStr)
os.Exit(1)
}