aboutsummaryrefslogtreecommitdiff
path: root/ascseq.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
commit92649e745cbbe710ffa3bec1504f877f93fa34aa (patch)
treec51a1e26288397bf97295f0d1cdda4760254cb87 /ascseq.c
parent1f8e5df65d294f56735b20fdb4c8c65919609439 (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/cxc/; revision=460
Diffstat (limited to 'ascseq.c')
-rw-r--r--ascseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ascseq.c b/ascseq.c
index 7213d43..2a6e21c 100644
--- a/ascseq.c
+++ b/ascseq.c
@@ -84,7 +84,7 @@ void ascseq_anything(t_ascseq *x, t_symbol* s, t_int argc, t_atom* argv)
void ascseq_symbol(t_ascseq *x, t_symbol *s)
{
- t_atom* a;
+ t_atom* a = NULL;
ascseq_anything(x, s, 0, a);
}