From 34b3b931362c8d0fce96e390bb8b1ea94d6a4101 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 15 Jun 2013 03:41:06 +0200 Subject: [PATCH] tests/example_error.c: Fix typo in function name. --- tests/example_error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/example_error.c b/tests/example_error.c index e114049..0ed8746 100644 --- a/tests/example_error.c +++ b/tests/example_error.c @@ -31,7 +31,7 @@ void (*error_print_progname)(void); -static void print_prognmae(void) { +static void print_progname(void) { fprintf(stderr, "PROG"); } @@ -46,7 +46,7 @@ int main(int argc unused, char **argv unused) { error_at_line(0, ENOMEM, "file", 42, ""); error_at_line(0, ENOMEM, "file", 42, ""); - error_print_progname = print_prognmae; + error_print_progname = print_progname; error_one_per_line = 1; error(0, 0, ""); -- 2.43.2