aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/romfs.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/romfs.c b/src/lib/romfs.c
index 6c638cec7b..b28e5414b7 100644
--- a/src/lib/romfs.c
+++ b/src/lib/romfs.c
@@ -237,16 +237,16 @@ int romfs_execute_stage(const char *name)
}
/**
- * * run_address is passed the address of a function taking no parameters and
- * * jumps to it, returning the result.
- * * @param f the address to call as a function.
- * * returns value returned by the function.
- * */
+ * run_address is passed the address of a function taking no parameters and
+ * jumps to it, returning the result.
+ * @param f the address to call as a function.
+ * returns value returned by the function.
+ */
int run_address(void *f)
{
- int (*v) (void);
- v = f;
- return v();
+ int (*v) (void);
+ v = f;
+ return v();
}