From 63368907546d9258828969f6cd511dc364249aa9 Mon Sep 17 00:00:00 2001 From: Bram Stolk Date: Wed, 18 Apr 2018 22:41:26 -0700 Subject: [PATCH] Fix linux build. --- imcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imcat.c b/imcat.c index 0094009..5838fab 100644 --- a/imcat.c +++ b/imcat.c @@ -41,7 +41,7 @@ static void get_terminal_size(void) FILE* f = popen( "stty size", "r" ); if ( !f ) { - fprintf( stderr, "%s: Failed to determine terminal size using stty.\n", argv[0] ); + fprintf( stderr, "Failed to determine terminal size using stty.\n" ); exit( 1 ); } const int num = fscanf( f, "%d %d", &termh, &termw );