Skip to content

Commit bde579f

Browse files
committed
unbreak build
1 parent 9f2997b commit bde579f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/render/opengl/gl_engine_egl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(
376376
// NOTE: on many machines (cloud VMs?) the query string above is nullptr, and this whole function does nothing
377377
// useful
378378
if (vendorStrRaw == nullptr) {
379-
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: NULL priority score: " std::to_string(score);
379+
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: NULL priority score: " + std::to_string(score);
380380
scoreDevices.emplace_back(score, iDevice);
381381
continue;
382382
}
@@ -405,7 +405,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(
405405

406406
// at high verbosity levels, log the priority
407407
if (polyscope::options::verbosity > 5) {
408-
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: " + vendorStr + " priority score: " std::to_string(score);
408+
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: " + vendorStr + " priority score: " + std::to_string(score);
409409
}
410410

411411
scoreDevices.emplace_back(score, iDevice);

0 commit comments

Comments
 (0)