Skip to content

Commit 5dcb1bd

Browse files
authored
Merge pull request #166 from visitorckw/enforce-newline
Enforce newline at the end of files
2 parents dd6a761 + 5d1b7f1 commit 5dcb1bd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

console.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,4 +674,4 @@ bool run_console(char *infile_name)
674674
}
675675

676676
return err_cnt == 0;
677-
}
677+
}

linenoise.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1383,4 +1383,4 @@ int line_history_load(const char *filename)
13831383
}
13841384
fclose(fp);
13851385
return 0;
1386-
}
1386+
}

linenoise.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ void line_mask_mode_disable(void);
7676
}
7777
#endif
7878

79-
#endif /* __LINENOISE_H */
79+
#endif /* __LINENOISE_H */

web.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,4 @@ int web_eventmux(char *buf)
267267

268268
FD_CLR(STDIN_FILENO, &listenset);
269269
return 0;
270-
}
270+
}

web.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ void web_send(int out_fd, char *buffer);
1111

1212
int web_eventmux(char *buf);
1313

14-
#endif
14+
#endif

0 commit comments

Comments
 (0)