Add missing semicolon to prev commit

master
Ondřej Surý 2013-04-26 12:35:33 +02:00
parent 3be2f899db
commit 2498ba501a
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ clip_1d (int *x0, int *y0, int *x1, int *y1, int mindim, int maxdim)
*x0 = maxdim;
/* now, perhaps, adjust the end of the line */
if (*x1 < mindim) {
*y1 -= (int)(m * (*x1 - mindim))
*y1 -= (int)(m * (*x1 - mindim));
*x1 = mindim;
}
return 1;