From e68e8d5a68709e242248116a318f1c54da83ac54 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sun, 27 Jan 2013 17:41:44 +0100 Subject: [PATCH] Fixed signed/unsigned warnings Signed-off-by: Sven Strickroth --- src/TortoiseShell/GITPropertyPage.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/TortoiseShell/GITPropertyPage.cpp b/src/TortoiseShell/GITPropertyPage.cpp index b58a53854..ba62803af 100644 --- a/src/TortoiseShell/GITPropertyPage.cpp +++ b/src/TortoiseShell/GITPropertyPage.cpp @@ -638,9 +638,9 @@ void CGitPropertyPage::InitWorkfileView() } if (allAreFiles) { - int assumevalid = 0; - int skipworktree = 0; - int executable = 0; + size_t assumevalid = 0; + size_t skipworktree = 0; + size_t executable = 0; do { git_index *index = NULL; -- 2.11.4.GIT