about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorWilliam Wennerström <william@wstrm.dev>2020-07-20 13:01:05 +0200
committerWilliam Wennerström <william@wstrm.dev>2020-11-16 21:58:09 +0100
commit4711fc62a3d691d35400bc7316f9026c64227d51 (patch)
treec448799a2b86e184d5060cf4915376ce82fdfdb3 /src/ui
parenta0cf0844abeeffe83a13e438eff3c309bc9887e9 (diff)
downloadprofani-tty-4711fc62a3d691d35400bc7316f9026c64227d51.tar.gz
Run make format on rebase
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/window.c2
-rw-r--r--src/ui/window.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 03a5b21f..8d028139 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -2192,7 +2192,7 @@ cons_show_omemo_prefs(void)
     cons_show("OMEMO char (/omemo char)     : %s", ch);
     free(ch);
 
-    cons_alert();
+    cons_alert(NULL);
 }
 
 void
diff --git a/src/ui/window.c b/src/ui/window.c
index c03b3aab..6f77f107 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -1390,7 +1390,7 @@ win_appendln_highlight(ProfWin* window, theme_item_t theme_item, const char* con
 }
 
 void
-win_print_http_transfer(ProfWin *window, const char *const message, char *url)
+win_print_http_transfer(ProfWin* window, const char* const message, char* url)
 {
     win_print_outgoing_with_receipt(window, "!", NULL, message, url, NULL);
 }
diff --git a/src/ui/window.h b/src/ui/window.h
index 86d1dbfd..7ff25a87 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -72,7 +72,7 @@ void win_println_incoming_muc_msg(ProfWin* window, char* show_char, int flags, c
 void win_print_outgoing_muc_msg(ProfWin* window, char* show_char, const char* const me, const char* const id, const char* const replace_id, const char* const message);
 void win_print_history(ProfWin* window, const ProfMessage* const message);
 
-void win_print_http_transfer(ProfWin *window, const char *const message, char *url);
+void win_print_http_transfer(ProfWin* window, const char* const message, char* url);
 
 void win_newline(ProfWin* window);
 void win_redraw(ProfWin* window);
1 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96