Browse Source

WindowServer: Fix build after FBResolution changes

Andreas Kling 5 years ago
parent
commit
13dcd9a037
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Servers/WindowServer/Screen.cpp

+ 1 - 1
Servers/WindowServer/Screen.cpp

@@ -70,7 +70,7 @@ Screen::~Screen()
 
 bool Screen::set_resolution(int width, int height)
 {
-    FBResolution resolution { 0, (int)width, (int)height };
+    FBResolution resolution { 0, (unsigned)width, (unsigned)height };
     int rc = fb_set_resolution(m_framebuffer_fd, &resolution);
 #ifdef WSSCREEN_DEBUG
     dbg() << "fb_set_resolution() - return code " << rc;