summaryrefslogtreecommitdiff
path: root/libkms++/framebuffer.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-18 21:13:18 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-18 21:13:18 +0300
commit9b05a5709fb7545579eb17bc16d75bb6de8162d7 (patch)
tree10121dcb41acac8d62c85679f75d117b61a2ccba /libkms++/framebuffer.h
parentad7d39e1490817064675e148ec8e4cbec9cd5206 (diff)
fb: fix a few wrong types
Diffstat (limited to 'libkms++/framebuffer.h')
-rw-r--r--libkms++/framebuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libkms++/framebuffer.h b/libkms++/framebuffer.h
index 25659c6..cbf705d 100644
--- a/libkms++/framebuffer.h
+++ b/libkms++/framebuffer.h
@@ -14,7 +14,7 @@ public:
uint32_t width() const { return m_width; }
uint32_t height() const { return m_height; }
protected:
- Framebuffer(Card& card, int width, int height);
+ Framebuffer(Card& card, uint32_t width, uint32_t height);
private:
uint32_t m_width;