Fix a few code style errors

This commit is contained in:
ISSOtm
2020-04-08 00:44:41 +02:00
parent b0ec8468e6
commit 2b0c34ecb5
5 changed files with 11 additions and 11 deletions

View File

@@ -44,7 +44,7 @@ noreturn_ void fatal(char const *fmt, ...);
* @param mode The mode to open the file with
* @return A pointer to a valid FILE structure, or NULL if fileName was NULL
*/
FILE * openFile(char const *fileName, char const *mode);
FILE *openFile(char const *fileName, char const *mode);
#define closeFile(file) do { \
FILE *tmp = file; \

View File

@@ -25,7 +25,7 @@ struct Assertion {
* This would be redundant with `.section->fileSymbols`... but
* `section` is sometimes NULL!
*/
struct Symbol ** fileSymbols;
struct Symbol **fileSymbols;
struct Assertion *next;
};