From 92649e745cbbe710ffa3bec1504f877f93fa34aa Mon Sep 17 00:00:00 2001 From: Daniel Heckenberg Date: Sun, 9 Mar 2003 11:10:53 +0000 Subject: 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 --- ascseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ascseq.c') 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); } -- cgit v1.2.1