about summary refs log tree commit diff
path: root/boot/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'boot/common.c')
-rw-r--r--boot/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/common.c b/boot/common.c
index b9da4cf..8291a51 100644
--- a/boot/common.c
+++ b/boot/common.c
@@ -142,7 +142,7 @@ string_new(const ascii* data, uint length)
 }
 
 struct String
-string_empty()
+string_empty(void)
 {
     return (struct String){
         .data = nil,
@@ -213,7 +213,7 @@ struct String_Array
 
 // initializes a string array with no strings.
 struct String_Array
-string_array_new()
+string_array_new(void)
 {
     return (struct String_Array){
         .strings = { 0 },