summaryrefslogtreecommitdiff
path: root/software/shared/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'software/shared/syscall.c')
-rw-r--r--software/shared/syscall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/software/shared/syscall.c b/software/shared/syscall.c
index 2e4199f..1acb88f 100644
--- a/software/shared/syscall.c
+++ b/software/shared/syscall.c
@@ -46,7 +46,7 @@ void _exit(int code)
write(STDERR_FILENO, message, strlen(message));
write_hex(STDERR_FILENO, code);
- while (1);
+ while (1){};
}
@@ -192,11 +192,11 @@ ssize_t write(int fd, const void* ptr, size_t len)
for (jj = 0; jj < len; jj++){
- while ((*uart_tx_count) < 1);
+ while ((*uart_tx_count) < 1){};
*uart_tx = current[jj];
if (current[jj] == '\n'){
- while ((*uart_tx_count) < 1);
+ while ((*uart_tx_count) < 1){};
*uart_tx = '\r';
}
}