From 407385dc725c261d92faa3793a14767754353d62 Mon Sep 17 00:00:00 2001 From: "A. Tombs" Date: Mon, 6 Jun 2016 20:23:30 +0100 Subject: [PATCH] Correct program name printed by tearing test The tearing test incorrectly calls itself "iconify" when printing usage information, probably just a copy-paste error. Closes #774. --- tests/tearing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tearing.c b/tests/tearing.c index 11036aff..5cd48b3d 100644 --- a/tests/tearing.c +++ b/tests/tearing.c @@ -43,7 +43,7 @@ static double frame_rate; static void usage(void) { - printf("Usage: iconify [-h] [-f]\n"); + printf("Usage: tearing [-h] [-f]\n"); printf("Options:\n"); printf(" -f create full screen window\n"); printf(" -h show this help\n");