From 43d81eef252fa6606891ef50adf8b0f2033ee688 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Tue, 21 Aug 2012 23:39:48 +0200 Subject: [PATCH] TGitCache: Fixed typo, use value instead of reference Signed-off-by: Sven Strickroth --- src/Git/GitIndex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Git/GitIndex.cpp b/src/Git/GitIndex.cpp index c3985ae26..9e4992667 100644 --- a/src/Git/GitIndex.cpp +++ b/src/Git/GitIndex.cpp @@ -258,7 +258,7 @@ int CGitIndexList::GetStatus(const CString &gitdir,const CString &pathParam, git GetFileStatus(gitdir, at(i).m_FileName, status, time, callback, pData, NULL, assumeValid, skipWorktree); // if a file is assumed valid, we need to inform the caller, otherwise the assumevalid flag might not get to the explorer on first open of a repository if (callback && (assumeValid || skipWorktree)) - callback(gitdir + _T("\\") + path, *status, false, pData, assumeValid, skipWorktree); + callback(gitdir + _T("\\") + path, *status, false, pData, *assumeValid, *skipWorktree); if (*status != git_wc_status_none) { if (dirstatus == git_wc_status_none) -- 2.11.4.GIT