summaryrefslogtreecommitdiff
path: root/src/job.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/job.c')
-rw-r--r--src/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/job.c b/src/job.c
index ddfc8ef3c..c3ba3b854 100644
--- a/src/job.c
+++ b/src/job.c
@@ -885,7 +885,7 @@ job_still_useful(job_T *job)
* Return TRUE when there is any running job that we care about.
*/
int
-job_any_running()
+job_any_running(void)
{
job_T *job;
@@ -1655,7 +1655,7 @@ init_prompt(int cmdchar_todo)
* Return TRUE if the cursor is in the editable position of the prompt line.
*/
int
-prompt_curpos_editable()
+prompt_curpos_editable(void)
{
return curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count
&& curwin->w_cursor.col >= (int)STRLEN(prompt_text());