diff options
| author | Mel <mel@rnrd.eu> | 2025-06-15 03:55:28 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-06-15 03:55:28 +0200 |
| commit | 19d2a48bb4034b00d4ffbb51fcc37f55af707e05 (patch) | |
| tree | 984b1ffa23de183435e7aef00c4137e637dfd785 /boot/parse.c | |
| parent | 7ad3f400dde57f06ef52c2a9cf788a18d1891b7d (diff) | |
| download | catskill-19d2a48bb4034b00d4ffbb51fcc37f55af707e05.tar.zst catskill-19d2a48bb4034b00d4ffbb51fcc37f55af707e05.zip | |
`void` for parameter-less functions (I keep forgetting I'm not writing C++ anymore.. ^^')
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot/parse.c')
| -rw-r--r-- | boot/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/parse.c b/boot/parse.c index 9aeaf94..658a522 100644 --- a/boot/parse.c +++ b/boot/parse.c @@ -34,7 +34,7 @@ parser_error(enum Parser_Error_Kind kind) } struct Parser_Error -parser_error_none() +parser_error_none(void) { return parser_error(PARSER_ERROR_NONE); } |
