summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-28 20:59:56 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-28 20:59:56 +0000
commitc97f9a55bd020b94d92c392516d763ed5e43d872 (patch)
tree463236716e49c8eb05bd8494034bc617924b2085 /src/ex_getln.c
parent10c75c4a09a604ea674a2700aacb55914750b86d (diff)
patch 8.2.3930: getcmdline() argument has a misleading typev8.2.3930
Problem: getcmdline() argument has a misleading type. Solution: Use the correct type, even though the value is not used.
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index bffdf657fa..b4316d8452 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -1554,10 +1554,10 @@ init_ccline(int firstc, int indent)
*/
char_u *
getcmdline(
- int firstc,
- long count, // only used for incremental search
- int indent, // indent for inside conditionals
- int do_concat UNUSED)
+ int firstc,
+ long count, // only used for incremental search
+ int indent, // indent for inside conditionals
+ getline_opt_T do_concat UNUSED)
{
return getcmdline_int(firstc, count, indent, TRUE);
}