summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2017-02-06 14:36:27 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2017-02-06 14:36:27 -0500
commit7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe (patch)
tree1956b81f5c2a9eea51d6bbc9a4071d83874dd492 /main.c
parent835b2b4910c19ee2a9411da55080be6b1e30a722 (diff)
downloadroux-7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe.tar.gz
use uint for block ids
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index fd0b6e4..b60ded6 100644
--- a/main.c
+++ b/main.c
@@ -39,7 +39,7 @@ data(Dat *d)
 static void
 func(Fn *fn)
 {
-	int n;
+	uint n;
 
 	if (dbg)
 		fprintf(stderr, "**** Function %s ****", fn->name);