From f4c728ea2d2ce6efe9fc0f476a91ce4da4b585af Mon Sep 17 00:00:00 2001 From: Wyk3d Date: Sat, 3 Jan 2009 18:23:36 +0200 Subject: [PATCH] Fixed a whitespace error in git_id's Makefile.am generation --- contrib/git_id/git_id.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/git_id/git_id.cpp b/contrib/git_id/git_id.cpp index cad9bf2c4..23cb9e806 100644 --- a/contrib/git_id/git_id.cpp +++ b/contrib/git_id/git_id.cpp @@ -613,7 +613,7 @@ bool generate_sql_makefile() for(std::set::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr) { next = itr; ++next; - fprintf(fout, "\t%s %s\n", itr->c_str(), next == file_list.end() ? "" : "\\"); + fprintf(fout, "\t%s%s\n", itr->c_str(), next == file_list.end() ? "" : " \\"); } fprintf(fout, @@ -625,7 +625,7 @@ bool generate_sql_makefile() for(std::set::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr) { next = itr; ++next; - fprintf(fout, "\t%s %s\n", itr->c_str(), next == file_list.end() ? "" : "\\"); + fprintf(fout, "\t%s%s\n", itr->c_str(), next == file_list.end() ? "" : " \\"); } fclose(fout);