Use \t instead explict tabs in genrevision string constant.

This commit is contained in:
VladimirMangos 2008-10-29 19:01:01 +03:00
parent d8e29e7421
commit 403374c6c7

View file

@ -66,7 +66,7 @@ void extractDataFromGit(FILE* EntriesFile, std::string path, bool url, RawData&
bool found = false;
while(fgets(buf,200,EntriesFile))
{
if(sscanf(buf,"%s branch %s of %s",hash_str,branch_str,url_str)==3)
if(sscanf(buf,"%s\t\tbranch %s of %s",hash_str,branch_str,url_str)==3)
{
found = true;
break;