Index: uspace/app/sbi/src/builtin/bi_task.c
===================================================================
--- uspace/app/sbi/src/builtin/bi_task.c	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
+++ uspace/app/sbi/src/builtin/bi_task.c	(revision fa77af79d882c3f7ecd77876081adf5ea3247d64)
@@ -114,5 +114,5 @@
 	}
 
-	cmd[dim] = '\0';
+	cmd[dim] = NULL;
 
 	if (os_exec((char * const *)cmd) != EOK) {
Index: uspace/app/sbi/src/run_expr.c
===================================================================
--- uspace/app/sbi/src/run_expr.c	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
+++ uspace/app/sbi/src/run_expr.c	(revision fa77af79d882c3f7ecd77876081adf5ea3247d64)
@@ -2886,5 +2886,5 @@
 				/* Is it static/nonstatic? */
 				var_sn = stree_symbol_has_attr(
-				    var_to_symbol(var), sac_static);
+				    var_to_symbol(var), sac_static) ? sn_static : sn_nonstatic;
 				if (var_sn == sn) {
 					/* Compute field type. XXX Memoize. */
