summaryrefslogtreecommitdiff
path: root/device
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2006-11-11 01:12:24 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:55 +0200
commit571472f6ac1e63fda8ef49e44b83334ad5431aff (patch)
tree7459015d016840c8f85a39a987907f6b1f11c0fe /device
parent3d98b08858cb57bae632b4800c3e0fcff3f04fa9 (diff)
2006-11-11 Samuel Thibault <samuel.thibault@ens-lyon.org>
Fix ``assignment used as truth value'' warnings. * device/cons.c (cninit): Add parenthesis. * kern/bootstrap.c (copy_bootstrap): Likewise. * kern/printf.c (_doprnt): Likewise. * vm/vm_map.c (vm_map_lookup): Likewise.
Diffstat (limited to 'device')
-rw-r--r--device/cons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/device/cons.c b/device/cons.c
index a3d380d2..07a1958e 100644
--- a/device/cons.c
+++ b/device/cons.c
@@ -97,7 +97,7 @@ cninit()
/*
* Found a console, initialize it.
*/
- if (cp = cn_tab) {
+ if ((cp = cn_tab)) {
/*
* Initialize as console
*/