From a6e83281efe2f94fa93ed85f7b3e1043cf0dd2bf Mon Sep 17 00:00:00 2001 From: GreyMerlin Date: Mon, 10 Sep 2018 11:23:27 -0700 Subject: [PATCH] minor tweak to commit 1c33ab3aa --- Src/DirActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/DirActions.cpp b/Src/DirActions.cpp index 937d56e47..e80ca6b2d 100644 --- a/Src/DirActions.cpp +++ b/Src/DirActions.cpp @@ -292,7 +292,7 @@ uintptr_t FindItemFromPaths(const CDiffContext& ctxt, const PathContext& paths) { int nBuffer; String file[3], path[3], base; - for (nBuffer = 0; nBuffer < paths.size(); ++nBuffer) + for (nBuffer = 0; nBuffer < static_cast(paths.size()); ++nBuffer) { String p = paths[nBuffer]; file[nBuffer] = paths::FindFileName(p); -- 2.11.0