about summary refs log tree commit diff
path: root/thread.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-14 18:20:42 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-14 18:20:42 +0200
commitb56f2a668bbbcb7d4956ce5c94c932be543420ee (patch)
tree803da9118747a1112d503794d98c1f7d76d16c1a /thread.c
parent8c7c614bb36480ca7d55464d25f90904e4ccfbbf (diff)
downloadmblaze-b56f2a668bbbcb7d4956ce5c94c932be543420ee.tar.gz
mblaze-b56f2a668bbbcb7d4956ce5c94c932be543420ee.tar.xz
mblaze-b56f2a668bbbcb7d4956ce5c94c932be543420ee.zip
add () for assignments
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index aa2d377..0b89df2 100644
--- a/thread.c
+++ b/thread.c
@@ -264,7 +264,7 @@ print_tree(struct container *c, int depth)
 	
 		if (c->child)
 			print_tree(c->child, depth+1);
-	} while (c = c->next);
+	} while ((c = c->next));
 }
 
 int