diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-13 13:12:35 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-13 13:12:35 -0500 |
commit | 3be8f0fef8e7979855f94b4c7096725d3faf9c84 (patch) | |
tree | e6723961756080674875c42bbdf9476e6de468a2 | |
parent | 291c39565fb3b4e688dce2bfedbdd781ed71e87d (diff) | |
download | roux-3be8f0fef8e7979855f94b4c7096725d3faf9c84.tar.gz |
change initial vector size to 2
-rw-r--r-- | lisc/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/util.c b/lisc/util.c index 7d03053..a45430f 100644 --- a/lisc/util.c +++ b/lisc/util.c @@ -15,7 +15,7 @@ struct Vec { enum { - VMin = 32, + VMin = 2, VMag = 0xcabba9e, NPtr = 256, }; |