From 095e10a6a17420dd31d1f5f592b639f100275057 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 1 Aug 2011 17:35:10 +0000 Subject: replace .x%x 32-bit only canvas id with .x%lx canvas id which supports 32-bit and 64-bit svn path=/trunk/externals/miXed/; revision=15186 --- toxy/tot.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'toxy/tot.c') diff --git a/toxy/tot.c b/toxy/tot.c index 0fb5763..58a21b9 100644 --- a/toxy/tot.c +++ b/toxy/tot.c @@ -157,7 +157,7 @@ static t_symbol *tot_dogetpathname(t_tot *x, int visedonly, int complain) else { char buf[32]; - sprintf(buf, ".x%x.c", (int)cv); + sprintf(buf, ".x%lx.c", (int)cv); return (gensym(buf)); } } @@ -399,7 +399,7 @@ static void tot_detach(t_tot *x) t_pd *gc; t_symbol *target; char buf[64]; - sprintf(buf, ".x%x", (int)cv); + sprintf(buf, ".x%lx", (int)cv); target = gensym(buf); if (!tot_guiconnect_class) { @@ -426,7 +426,7 @@ static void tot_attach(t_tot *x) t_pd *gc; t_symbol *target; char buf[64]; - sprintf(buf, ".x%x", (int)cv); + sprintf(buf, ".x%lx", (int)cv); target = gensym(buf); if (gc = pd_findbyclass(target, tot_guiconnect_class)) { @@ -461,7 +461,7 @@ static void tot_capture(t_tot *x, t_symbol *s, t_floatarg f) { char buf[64]; ts->ts_cv = cv; - sprintf(buf, ".x%x", (int)cv); + sprintf(buf, ".x%lx", (int)cv); pd_bind((t_pd *)ts, ts->ts_target = gensym(buf)); } } @@ -592,7 +592,7 @@ static void *tot_new(t_symbol *s1, t_symbol *s2) glist = tot_getglist(x); if (glist == x->x_glist) { - sprintf(buf, ".x%x.c", (int)glist); + sprintf(buf, ".x%lx.c", (int)glist); x->x_cvpathname = gensym(buf); } else x->x_cvpathname = 0; -- cgit v1.2.1