aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseyko <seyko2@gmail.com>2015-03-03 21:41:22 +0300
committerseyko <seyko2@gmail.com>2015-03-03 21:41:22 +0300
commit2e6626a4b38088770fe908b1261e8234590f3165 (patch)
tree3d0b331b562c2a24a7d23008f636e03f388d4fc5
parentd70440b406f84b2e0ed77d052682c6d39d3b1a8a (diff)
downloadtinycc-2e6626a4b38088770fe908b1261e8234590f3165.tar.gz
tinycc-2e6626a4b38088770fe908b1261e8234590f3165.tar.bz2
Don't add a slash to the install path of the tcc in display_info()
-rw-r--r--tcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.c b/tcc.c
index 9bd9f8e..1812b0d 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);