[kernel] system_get_log should take a void*

Since it's not just text that's being returned in the buffer, switch the
argument from a char* to a void*.
This commit is contained in:
Justin C. Miller
2021-02-04 19:44:28 -08:00
parent b898949ffc
commit 4f8e35e409
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ system_noop()
}
j6_status_t
system_get_log(j6_handle_t sys, char *buffer, size_t *size)
system_get_log(j6_handle_t sys, void *buffer, size_t *size)
{
if (!size || (*size && !buffer))
return j6_err_invalid_arg;