From 0cda645d4c21742b5d5baabc1a954609ffe27ad6 Mon Sep 17 00:00:00 2001 From: Frederic Marchal Date: Sun, 26 Apr 2015 14:14:59 +0200 Subject: [PATCH] Fix a message (missing colon). --- index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.c b/index.c index 2975813..8fcbb31 100644 --- a/index.c +++ b/index.c @@ -161,7 +161,7 @@ static long long int get_size(char *path,int path_size) if (direntp->d_name[0]=='.' && (direntp->d_name[1]=='\0' || (direntp->d_name[1]=='.' && direntp->d_name[2]=='\0'))) continue; name_len=strlen(direntp->d_name); if (path_len+name_len+1>=path_size) { - debuga(_("Path too long ")); + debuga(_("Path too long: ")); debuga_more("%s%s\n",path,direntp->d_name); exit(EXIT_FAILURE); } -- 2.47.2