Skip to content

Commit

Permalink
stale references to caller
Browse files Browse the repository at this point in the history
  • Loading branch information
akkartik committed Mar 18, 2022
1 parent 6c85513 commit af8d3ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kilo.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit af8d3ad

Please sign in to comment.