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);