From 2e6626a4b38088770fe908b1261e8234590f3165 Mon Sep 17 00:00:00 2001 From: seyko Date: Tue, 3 Mar 2015 21:41:22 +0300 Subject: [PATCH] Don't add a slash to the install path of the tcc in display_info() --- tcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcc.c b/tcc.c index 9bd9f8e8..1812b0d3 100644 --- a/tcc.c +++ b/tcc.c @@ -72,7 +72,7 @@ static void display_info(TCCState *s, int what) ")\n", TCC_VERSION); break; case 1: - printf("install: %s/\n", s->tcc_lib_path); + printf("install: %s\n", s->tcc_lib_path); /* print_paths("programs", NULL, 0); */ print_paths("crt", s->crt_paths, s->nb_crt_paths); print_paths("libraries", s->library_paths, s->nb_library_paths);