diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-06-01 18:35:16 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-06-02 08:07:44 -0400 |
commit | af87c7a1af8d790b819afe782fcff2830e959d58 (patch) | |
tree | af9b6fe9c85e1159679406abe82c2d61fe427705 /include | |
parent | fbca3bbacbe6e223a5e15d8265301b7d2c36af4e (diff) | |
download | sway-af87c7a1af8d790b819afe782fcff2830e959d58.tar.xz |
Address emersion's feedback on peek_line
Diffstat (limited to 'include')
-rw-r--r-- | include/readline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/readline.h b/include/readline.h index e1ae2302..ee2eba5d 100644 --- a/include/readline.h +++ b/include/readline.h @@ -4,7 +4,7 @@ #include <stdio.h> char *read_line(FILE *file); -char *peek_line(FILE *file, int offset, long *position); +char *peek_line(FILE *file, int line_offset, long *position); char *read_line_buffer(FILE *file, char *string, size_t string_len); #endif |