From 2b659ab1fe788e47013ae79f924a000410802261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Thu, 4 Jul 2024 15:31:25 +0200 Subject: [PATCH] Update generate_perror/main.go Co-authored-by: Mattias Jonsson --- generate_perror/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate_perror/main.go b/generate_perror/main.go index 3e460bb..2b9ee92 100644 --- a/generate_perror/main.go +++ b/generate_perror/main.go @@ -136,7 +136,7 @@ func main() { log.Fatalf("Error setting up call to perrror: %s", err) } if err = cmd.Start(); err != nil { - log.Fatalf("Error staring call to perror: %s", err) + log.Fatalf("Error starting call to perror: %s", err) } s := bufio.NewScanner(stdout) r := regexp.MustCompile(`^MySQL error code MY-0*(\d+) \((\w+)\)`)