Skip to content

Commit 323d93b

Browse files
committed
Fix function declaration missing void.
1 parent 69c3ce6 commit 323d93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kilo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ void editorInsertNewline(void) {
758758
}
759759

760760
/* Delete the char at the current prompt position. */
761-
void editorDelChar() {
761+
void editorDelChar(void) {
762762
int filerow = E.rowoff+E.cy;
763763
int filecol = E.coloff+E.cx;
764764
erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow];

0 commit comments

Comments
 (0)