about summary refs log tree commit diff stats
path: root/src/ui/core.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-01-15 23:46:54 +0000
committerJames Booth <boothj5@gmail.com>2015-01-15 23:46:54 +0000
commitf0ffc31cd6dc93ec93d2b60dbbd92580001b9034 (patch)
tree85ca4cc9047609954aee210c84d32fe35dfd0921 /src/ui/core.c
parent51105720ab32faa4548655266ca0ae4c661f0701 (diff)
downloadprofani-tty-f0ffc31cd6dc93ec93d2b60dbbd92580001b9034.tar.gz
Renamed inp_get_char->inp_read
Diffstat (limited to 'src/ui/core.c')
-rw-r--r--src/ui/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 69701616..3e4d2c80 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -183,7 +183,7 @@ ui_readline(void)
     int key_type;
     wint_t ch;
 
-    char *line = inp_get_char(&key_type, &ch);
+    char *line = inp_read(&key_type, &ch);
     _win_handle_switch(ch);
 
     ProfWin *current = wins_get_current();