aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-06-08 09:56:34 -0400
committerLibravatar GitHub <noreply@github.com>2017-06-08 09:56:34 -0400
commit154cc8a9c30a8eddb140102a095e3b5dc84bb8f9 (patch)
tree41bcb7847fbfe27277bdc9602f1ab99007623ca2
parentMerge pull request #1232 from johalun/master-freebsd (diff)
parentinclude stdint to be compaitable with musl (diff)
downloadsway-154cc8a9c30a8eddb140102a095e3b5dc84bb8f9.tar.gz
sway-154cc8a9c30a8eddb140102a095e3b5dc84bb8f9.tar.zst
sway-154cc8a9c30a8eddb140102a095e3b5dc84bb8f9.zip
Merge pull request #1235 from vaartis/patch-1
include stdint to be compaitable with musl
-rw-r--r--wayland/pango.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/wayland/pango.c b/wayland/pango.c
index 702ab15c..f9eec98c 100644
--- a/wayland/pango.c
+++ b/wayland/pango.c
@@ -5,6 +5,7 @@
5#include <string.h> 5#include <string.h>
6#include <stdio.h> 6#include <stdio.h>
7#include <stdbool.h> 7#include <stdbool.h>
8#include <stdint.h>
8#include "log.h" 9#include "log.h"
9 10
10PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, const char *text, 11PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, const char *text,