Skip to content

Commit

Permalink
Revert unnecessary style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
buzzhuzz committed Mar 25, 2024
1 parent bd716ea commit 2caf252
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/slic3r/GUI/RemovableDriveManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,9 @@ std::string RemovableDriveManager::get_removable_drive_from_path(const std::stri

// check if same filesystem
std::scoped_lock<std::mutex> lock(m_drives_mutex);
for (const DriveData &drive_data : m_current_drives) {
for (const DriveData &drive_data : m_current_drives)
if (search_for_drives_internal::compare_filesystem_id(new_path, drive_data.path))
return drive_data.path;
}
return std::string();
}
#endif
Expand Down

0 comments on commit 2caf252

Please sign in to comment.