Skip to content

Commit

Permalink
Merge pull request #5547 from computezrmle/computezrmle-avoid_compile…
Browse files Browse the repository at this point in the history
…r_warning

Avoid compiler warning in vboxwrapper.cpp
  • Loading branch information
AenBleidd authored Mar 22, 2024
2 parents f5c35e5 + 7f3af59 commit b2af307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/vboxwrapper/vboxwrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ int main(int argc, char** argv) {

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

0 comments on commit b2af307

Please sign in to comment.