diff --git a/src/Magnum/Platform/Implementation/DpiScaling.cpp b/src/Magnum/Platform/Implementation/DpiScaling.cpp index 4be66fdbd..fc2e208d7 100644 --- a/src/Magnum/Platform/Implementation/DpiScaling.cpp +++ b/src/Magnum/Platform/Implementation/DpiScaling.cpp @@ -81,27 +81,27 @@ Float x11DpiScaling() { won't be and that's okay -- it may be using Wayland or something else. */ void* xlib = dlopen(nullptr, RTLD_NOW|RTLD_GLOBAL); Containers::ScopeGuard closeXlib{xlib, dlclose}; - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xOpenDisplay = reinterpret_cast(dlsym(xlib, "XOpenDisplay")); - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xCloseDisplay = reinterpret_cast(dlsym(xlib, "XCloseDisplay")); - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xResourceManagerString = reinterpret_cast(dlsym(xlib, "XResourceManagerString")); - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xrmGetStringDatabase = reinterpret_cast(dlsym(xlib, "XrmGetStringDatabase")); - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xrmGetResource = reinterpret_cast(dlsym(xlib, "XrmGetResource")); - #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/suppressing_gcc_warnings */ + #ifdef __GNUC__ /* http://www.mr-edd.co.uk/blog/supressing_gcc_warnings */ __extension__ #endif auto xrmDestroyDatabase = reinterpret_cast(dlsym(xlib, "XrmDestroyDatabase"));