mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
Fixed a whitespace error in git_id's Makefile.am generation
This commit is contained in:
parent
ee505ec9da
commit
f4c728ea2d
1 changed files with 2 additions and 2 deletions
|
|
@ -613,7 +613,7 @@ bool generate_sql_makefile()
|
|||
for(std::set<std::string>::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<std::string>::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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue