aboutsummaryrefslogtreecommitdiff
path: root/popup/popup.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-04-13 14:20:35 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-04-13 14:20:35 +0000
commiteafc343071b994cc5cb4704b8243db5a88567f16 (patch)
tree267429796aae9f52b980608079f1b5c66ec5f892 /popup/popup.c
parentbb8b65427ac41447296e44139556adbb4600f94b (diff)
cast pointer to struct to long unsigned int to get rid of warning
svn path=/trunk/externals/bbogart/; revision=13440
Diffstat (limited to 'popup/popup.c')
-rw-r--r--popup/popup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/popup/popup.c b/popup/popup.c
index 8e11d92..9da8a94 100644
--- a/popup/popup.c
+++ b/popup/popup.c
@@ -639,7 +639,7 @@ static void *popup_new(t_symbol *s, int argc, t_atom *argv)
}
/* Bind the recieve "popup%lx" to the widget outlet*/
- sprintf(buf,"popup%lx",x);
+ sprintf(buf,"popup%lx", (long unsigned int)x);
x->x_sym = gensym(buf);
pd_bind(&x->x_obj.ob_pd, x->x_sym);