aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-15 10:24:55 -0400
committerIan Moffett <ian@osmora.org>2024-03-15 10:24:55 -0400
commit735b519d0c5cf704a992972829ab7a36afa95685 (patch)
tree07624f4d78e1def0b70d20d3b4cf6b2e4b49685d /sys
parent0730de4b2af0254849288be4679b3cbdcad31e3d (diff)
kernel: initramfs: Fix indent
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r--sys/fs/initramfs.c4
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;
}
}