Add missing return statement to render_num.

This commit is contained in:
mmdolze
2007-10-29 21:30:55 +00:00
parent ca3745d75f
commit 345d47a2fb
+1
View File
@@ -618,6 +618,7 @@ static int render_num(Widget *w, int left, int top, int right, int bottom)
if ((w != NULL) && (w->x > 0) && (w->y >= 0) && (w->y <= 10)) {
drivers_num(w->x + left, w->y);
}
return 0;
}