Thumbnail

rani/cscroll.git

Clone URL: https://git.buni.party/rani/cscroll.git

commit ff0c03236e825ef9fe25dd0306aa515a765d7176 Author: rani <clagv.randomgames@gmail.com> Date: Sat Jan 28 21:39:27 2023 +0000 Add missing function declaration for page_info() diff --git a/include/io.h b/include/io.h index 1202402..3b42ca4 100644 --- a/include/io.h +++ b/include/io.h @@ -1156 +1157 @@ void info_init(void);  void display_info(enum info_t, char *);  void refresh_info(void);  int get_info_color(struct info_node *); +void page_info(void);      extern bool print_path; diff --git a/src/io.c b/src/io.c index 5c159e0..81f7a33 100644 --- a/src/io.c +++ b/src/io.c @@ -8417 +8417 @@ void refresh_info(void) {  }     -void page_info() { +void page_info(void) {   if (info_buffer.n == 0 || !info_buffer.w) return;     clear();