diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-15 10:24:55 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-15 10:24:55 -0400 |
commit | 735b519d0c5cf704a992972829ab7a36afa95685 (patch) | |
tree | 07624f4d78e1def0b70d20d3b4cf6b2e4b49685d /sys/fs/initramfs.c | |
parent | 0730de4b2af0254849288be4679b3cbdcad31e3d (diff) |
kernel: initramfs: Fix indent
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/fs/initramfs.c')
-rw-r--r-- | sys/fs/initramfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/initramfs.c b/sys/fs/initramfs.c index dad3763..817e6a1 100644 --- a/sys/fs/initramfs.c +++ b/sys/fs/initramfs.c @@ -149,8 +149,8 @@ static char * get_module(const char *path, uint64_t *size) { for (uint64_t i = 0; i < mod_req.response->module_count; ++i) { if (strcmp(mod_req.response->modules[i]->path, path) == 0) { - *size = mod_req.response->modules[i]->size; - return mod_req.response->modules[i]->address; + *size = mod_req.response->modules[i]->size; + return mod_req.response->modules[i]->address; } } |