From: Frederic Marchal Date: Sun, 26 Apr 2015 12:14:59 +0000 (+0200) Subject: Fix a message (missing colon). X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fsarg.git;a=commitdiff_plain;h=0cda645d4c21742b5d5baabc1a954609ffe27ad6 Fix a message (missing colon). --- 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); }