aboutsummaryrefslogtreecommitdiff
path: root/src/z_urn.c
diff options
context:
space:
mode:
authorDaniel Heckenberg <dheck@users.sourceforge.net>2003-03-09 11:10:53 +0000
committerDaniel Heckenberg <dheck@users.sourceforge.net>2003-03-09 11:10:53 +0000
commit4503d2a4c9e406ac50cbbca51b2b83d7fa7b6d99 (patch)
tree456b29e51dbc0629b9029aabd0785f6e715894ba /src/z_urn.c
parent2243aed73c65c75981b37a7ff133f41732ceaff3 (diff)
Minor changes for compilation using Visual C++ 6.0 (SP3) under Windows
ncluding: - no array declaration with variable size - fixed signed/unsigned comparison warnings svn path=/trunk/externals/zexy/; revision=460
Diffstat (limited to 'src/z_urn.c')
-rw-r--r--src/z_urn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/z_urn.c b/src/z_urn.c
index 3376106..5b31330 100644
--- a/src/z_urn.c
+++ b/src/z_urn.c
@@ -57,7 +57,7 @@ static void urn_bang(t_urn *x)
unsigned int range = (x->x_range<1?1:x->x_range);
unsigned int randval = (unsigned int)x->x_state;
- int nval, used=1;
+ unsigned int nval, used=1;
if (x->x_count>=range)urn_clear(x);