summaryrefslogtreecommitdiff
path: root/kern
diff options
context:
space:
mode:
Diffstat (limited to 'kern')
-rw-r--r--kern/bootstrap.c2
-rw-r--r--kern/printf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/kern/bootstrap.c b/kern/bootstrap.c
index 0fa4d2d..ad501d6 100644
--- a/kern/bootstrap.c
+++ b/kern/bootstrap.c
@@ -450,7 +450,7 @@ static void copy_bootstrap(void *e, exec_info_t *boot_exec_info)
register vm_map_t user_map = current_task()->map;
int err;
- if (err = exec_load(boot_read, read_exec, e, boot_exec_info))
+ if ((err = exec_load(boot_read, read_exec, e, boot_exec_info)))
panic("Cannot load user-bootstrap image: error code %d", err);
#if MACH_KDB
diff --git a/kern/printf.c b/kern/printf.c
index 22b0987..74bb6c4 100644
--- a/kern/printf.c
+++ b/kern/printf.c
@@ -292,7 +292,7 @@ void _doprnt(
break;
any = FALSE;
- while (i = *p++) {
+ while ((i = *p++)) {
/* NOTE: The '32' here is because ascii space */
if (*p <= 32) {
/*