Skip to content
Snippets Groups Projects
Commit 46c93037 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

fix missing return value that keeps up from building on OSX

parent aa3aa469
No related branches found
No related tags found
No related merge requests found
...@@ -453,7 +453,7 @@ static int envgen_newclick(t_envgen *x, struct _glist *glist, ...@@ -453,7 +453,7 @@ static int envgen_newclick(t_envgen *x, struct _glist *glist,
if (x->resizeable && (xpos > wxpos + x->w.width) && if (x->resizeable && (xpos > wxpos + x->w.width) &&
(ypos > wypos)) { (ypos > wypos)) {
x->resizing = 1; x->resizing = 1;
return; return (0);
} }
x->w.shift = shift; x->w.shift = shift;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment