diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-04-13 14:20:35 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-04-13 14:20:35 +0000 |
commit | eafc343071b994cc5cb4704b8243db5a88567f16 (patch) | |
tree | 267429796aae9f52b980608079f1b5c66ec5f892 /popup | |
parent | bb8b65427ac41447296e44139556adbb4600f94b (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')
-rw-r--r-- | popup/popup.c | 2 |
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); |