summaryrefslogtreecommitdiff
path: root/ports/litex/common-hal/os/__init__.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/litex/common-hal/os/__init__.c')
-rw-r--r--ports/litex/common-hal/os/__init__.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/litex/common-hal/os/__init__.c b/ports/litex/common-hal/os/__init__.c
index 578f3e8c6..c070c2777 100644
--- a/ports/litex/common-hal/os/__init__.c
+++ b/ports/litex/common-hal/os/__init__.c
@@ -50,12 +50,12 @@ STATIC MP_DEFINE_ATTRTUPLE(
(mp_obj_t)&os_uname_info_release_obj,
(mp_obj_t)&os_uname_info_version_obj,
(mp_obj_t)&os_uname_info_machine_obj
-);
+ );
mp_obj_t common_hal_os_uname(void) {
return (mp_obj_t)&os_uname_info_obj;
}
-bool common_hal_os_urandom(uint8_t* buffer, uint32_t length) {
+bool common_hal_os_urandom(uint8_t *buffer, uint32_t length) {
return false;
}