From 6a8bd08b529569d32fab92d307b4f7410ae3462c Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 18 Oct 2021 22:25:01 +0200 Subject: [PATCH] i9e: Fix typo: s/ie9/i9e. It's weird that this was not noticed for so long. Fixes: e541d7bea7febed8cb9f8a65ae4bd9bdd1b5c8a0 Fixes: 3e3d8e1b48bbd8dbf46adf517c311b5e78dc820f --- interactive.c | 4 ++-- interactive.h | 2 +- play.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/interactive.c b/interactive.c index a8197308..8c4545b4 100644 --- a/interactive.c +++ b/interactive.c @@ -45,7 +45,7 @@ static struct i9e_private i9e_private, *i9ep = &i9e_private; * running. * * \return A negative return value of zero means the i9e task terminated. Only - * in this case it is safe to call ie9_close(). + * in this case it is safe to call i9e_close(). */ int i9e_get_error(void) { @@ -556,7 +556,7 @@ __printf_2_3 void i9e_log(int ll, const char* fmt,...) * the given text. If the length of this text exceeds the width of the * terminal, the text is shortened by leaving out a part in the middle. */ -void ie9_print_status_bar(char *buf, unsigned len) +void i9e_print_status_bar(char *buf, unsigned len) { size_t x = i9ep->num_columns, y = (x - 4) / 2; diff --git a/interactive.h b/interactive.h index 40ff2940..ddf02d76 100644 --- a/interactive.h +++ b/interactive.h @@ -80,7 +80,7 @@ struct i9e_client_info { int i9e_open(struct i9e_client_info *ici, struct sched *s); void i9e_attach_to_stdout(struct btr_node *producer); -void ie9_print_status_bar(char *buf, unsigned len); +void i9e_print_status_bar(char *buf, unsigned len); void i9e_close(void); void i9e_signal_dispatch(int sig_num); __printf_2_3 void i9e_log(int ll, const char* fmt,...); diff --git a/play.c b/play.c index ffdc8555..14fac42f 100644 --- a/play.c +++ b/play.c @@ -1102,7 +1102,7 @@ static void session_update_time_string(char *str, unsigned len) if (btr_get_input_queue_size(pt->btrn) > 0) return; } - ie9_print_status_bar(str, len); + i9e_print_status_bar(str, len); } /* -- 2.30.2