diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-03-18 10:08:01 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-03-18 10:39:56 -0700 |
commit | af8d3addd29880a7eb739cdedaf594facbcad06f (patch) | |
tree | 20c78f8666b03ebecec4ac292083381ccd60f716 /src | |
parent | 6c855134999c6952fc3ff241f8f0de38e8adfe99 (diff) | |
download | teliva-af8d3addd29880a7eb739cdedaf594facbcad06f.tar.gz |
stale references to caller
Diffstat (limited to 'src')
-rw-r--r-- | src/kilo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kilo.c b/src/kilo.c index 0f652cf..d2e9b1a 100644 --- a/src/kilo.c +++ b/src/kilo.c @@ -1353,7 +1353,7 @@ void editFilePermissions(char* filename) { editorRefreshScreen(editorNonCodeMenu); int y, x; getyx(stdscr, y, x); - mvaddstr(0, 0, "function file_operation_permitted(caller, filename, is_write)"); + mvaddstr(0, 0, "function file_operation_permitted(filename, is_write)"); mvaddstr(MIN(E.startrow + E.numrows, E.endrow), 0, "end"); mvaddstr(y, x, ""); int c = getch(); @@ -1460,7 +1460,7 @@ void resumeFilePermissionsEdit() { editorRefreshScreen(editorNonCodeMenu); int y, x; getyx(stdscr, y, x); - mvaddstr(0, 0, "function file_operation_permitted(caller, filename, is_write)"); + mvaddstr(0, 0, "function file_operation_permitted(filename, is_write)"); mvaddstr(MIN(E.startrow + E.numrows, E.endrow), 0, "end"); mvaddstr(y, x, ""); int c = getch(); |