*drive-thru whale* It's brown.

This commit is contained in:
XANTRONIX Development 2019-05-28 00:32:22 -05:00
parent b14146606d
commit 0fb807b2b9
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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);
}