aboutsummaryrefslogtreecommitdiff
path: root/client/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'client/ui.c')
-rw-r--r--client/ui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/ui.c b/client/ui.c
index 1cde52f..f636501 100644
--- a/client/ui.c
+++ b/client/ui.c
@@ -41,9 +41,9 @@ void w2_ui_paint_statusbar() {
mvaddnstr(1, 0, temp, g_w2_ui_width);
mvaddnstr(2, 0, temp, g_w2_ui_width);
- sprintf(temp, "%s, %ims %s",
- g_w2_state.connected ? W2_UI_CONN_STAT_CONNECTED : W2_UI_CONN_STAT_DISCONNECTED,
- g_w2_state.ping, W2_UI_CONN_STAT_PING);
+ g_w2_state.connected
+ ? sprintf(temp, W2_UI_CONN_STAT_CONNECTED ", %ims %s", g_w2_state.ping, W2_UI_CONN_STAT_PING)
+ : sprintf(temp, W2_UI_CONN_STAT_DISCONNECTED);
mvaddstr(0, 0, temp);
sprintf(temp, "(%s)", g_w2_state.info.build_str);