Skip to content

Commit b2af307

Browse files
authored
Merge pull request #5547 from computezrmle/computezrmle-avoid_compiler_warning
Avoid compiler warning in vboxwrapper.cpp
2 parents f5c35e5 + 7f3af59 commit b2af307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/vboxwrapper/vboxwrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ int main(int argc, char** argv) {
681681

682682
// Copy files to the shared directory
683683
//
684-
for (int i=0; i<pVM->copy_to_shared.size(); ++i) {
684+
for (long unsigned int i=0; i<pVM->copy_to_shared.size(); ++i) {
685685
string source = pVM->copy_to_shared[i];
686686
string destination = string("shared/") + source;
687687
if (!boinc_file_exists(destination.c_str())) {

0 commit comments

Comments
 (0)