diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2023-02-09 17:38:29 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2023-02-13 21:10:10 +0100 |
commit | 3b5d1a8f495d5b6bda72f9962516d5a1e273481b (patch) | |
tree | f0a64a13260e930148188db70d3e9dcf04ddd5ee /src/ipcpd/shim-data.c | |
parent | b0102d9dc3cb8b543e4e079ce68f1e06970b1cbb (diff) | |
download | ouroboros-3b5d1a8f495d5b6bda72f9962516d5a1e273481b.tar.gz ouroboros-3b5d1a8f495d5b6bda72f9962516d5a1e273481b.zip |
lib: Fix prototypes missing 'void'
Found by Clang version 15.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/shim-data.c')
-rw-r--r-- | src/ipcpd/shim-data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/shim-data.c b/src/ipcpd/shim-data.c index a499b2d4..035d9ebb 100644 --- a/src/ipcpd/shim-data.c +++ b/src/ipcpd/shim-data.c @@ -139,7 +139,7 @@ static void dir_entry_destroy(struct dir_entry * entry) free(entry); } -struct shim_data * shim_data_create() +struct shim_data * shim_data_create(void) { struct shim_data * sd; |