From 39674718283f1de404d9a84cccf2d7b9d5449483 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 20 Jul 2012 21:24:09 +0000 Subject: Fix compile error on MSVC due to attempt to convert a std::list::iterator to a std::vector::iterator. --- bin/bbackupd/BackupDaemon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/bbackupd/BackupDaemon.cpp') diff --git a/bin/bbackupd/BackupDaemon.cpp b/bin/bbackupd/BackupDaemon.cpp index 3b920d37..8133aec3 100644 --- a/bin/bbackupd/BackupDaemon.cpp +++ b/bin/bbackupd/BackupDaemon.cpp @@ -1317,7 +1317,7 @@ void BackupDaemon::CreateVssBackupComponents() } // Add all volumes included as backup locations to the snapshot set - for(std::vector::iterator + for(Locations::iterator iLocation = mLocations.begin(); iLocation != mLocations.end(); iLocation++) @@ -1478,7 +1478,7 @@ void BackupDaemon::CreateVssBackupComponents() } // lookup new snapshot volume for each location that has a snapshot - for(std::vector::iterator + for(Locations::iterator iLocation = mLocations.begin(); iLocation != mLocations.end(); iLocation++) -- cgit v1.2.3