aboutsummaryrefslogtreecommitdiffstats
path: root/sway/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c
index 96e41bbc..ec7353be 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -1,6 +1,7 @@
1#define _XOPEN_SOURCE 700 1#define _XOPEN_SOURCE 700
2#define _POSIX_C_SOURCE 200112L 2#define _POSIX_C_SOURCE 200112L
3#include <getopt.h> 3#include <getopt.h>
4#include <pango/pangocairo.h>
4#include <signal.h> 5#include <signal.h>
5#include <stdbool.h> 6#include <stdbool.h>
6#include <stdlib.h> 7#include <stdlib.h>
@@ -441,5 +442,7 @@ int main(int argc, char **argv) {
441 free_config(config); 442 free_config(config);
442 } 443 }
443 444
445 pango_cairo_font_map_set_default(NULL);
446
444 return exit_value; 447 return exit_value;
445} 448}