From 0fb807b2b98e2ab54c92e4388a88ca22a6188266 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 28 May 2019 00:32:22 -0500 Subject: [PATCH] *drive-thru whale* It's brown. --- include/hexagram/window.h | 2 +- src/window.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hexagram/window.h b/include/hexagram/window.h index 65f5b1c..34bfc98 100644 --- a/include/hexagram/window.h +++ b/include/hexagram/window.h @@ -22,7 +22,7 @@ void hexagram_window_destroy(hexagram_window *window); Display *hexagram_window_get_display(hexagram_window *window); -int hexagram_window_get_display_fd(hexagram_window *window); +int hexagram_window_display_fd(hexagram_window *window); int hexagram_window_show(hexagram_window *window); diff --git a/src/window.c b/src/window.c index 04b8cd4..713bee9 100644 --- a/src/window.c +++ b/src/window.c @@ -170,7 +170,7 @@ Display *hexagram_window_get_display(hexagram_window *window) { return window->display; } -int hexagram_window_get_display_fd(hexagram_window *window) { +int hexagram_window_display_fd(hexagram_window *window) { return ConnectionNumber(window->display); }