Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rishabh Gupta
purr-data
Commits
3318b9d9
Commit
3318b9d9
authored
May 17, 2016
by
Jonathan Wilkes
Browse files
fix typo in pd_bind symbol when freeing
parent
0e3cfba5
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/g_template.c
View file @
3318b9d9
...
...
@@ -1925,7 +1925,6 @@ void svg_updatevec(t_canvas *c, t_word *data, t_template *template,
t_template *target, void *parent, t_symbol *s, t_svg *x, t_scalar *sc,
int *predraw_bbox)
{
// post("updateing vec...");
int i, j;
for (i = 0; i < template->t_n; i++)
{
...
...
@@ -7592,7 +7591,7 @@ static void drawimage_free(t_drawimage *x)
/* delete the parent image in the gui */
char buf[50];
//sprintf(buf, ".x%lx", (t_int)x);
sprintf(buf, "
.
x%lx", (long unsigned int)x);
sprintf(buf, "x%lx", (long unsigned int)x);
pd_unbind(&x->x_obj.ob_pd, gensym(buf));
gui_vmess("gui_drawimage_free", "x", x);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment