Index: vlib/vputsv.c
===================================================================
--- vlib/vputsv.c	(revision bf89cfbcf78fe3cb5c96d5d735872139aa14889a)
+++ vlib/vputsv.c	(revision dade7a07de0f472fa35ae22738390baa39183d08)
@@ -27,5 +27,5 @@
 	int16_t	c;
 
-	while (c = *str++) {
+	while ((c = *str++)) {
 
 		vputcv(obase, row, col, c, attr, len);
@@ -55,5 +55,5 @@
 	int16_t	c;
 
-	while (c = *str++) {
+	while ((c = *str++)) {
 
 		vputcv(obase, row, col, c, *attr++, len);
