about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-03-18 10:08:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-03-18 10:39:56 -0700
commitaf8d3addd29880a7eb739cdedaf594facbcad06f (patch)
tree20c78f8666b03ebecec4ac292083381ccd60f716
parent6c855134999c6952fc3ff241f8f0de38e8adfe99 (diff)
downloadteliva-af8d3addd29880a7eb739cdedaf594facbcad06f.tar.gz
stale references to caller
-rw-r--r--src/kilo.c4
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();