Skip to content

Commit

Permalink
begining -> beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
ss18 authored and tombh committed Jan 7, 2018
1 parent cdae166 commit 18db9ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xzoom/scale.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
int p2step;
T *p1_save;

/* p1 point to begining of scanline j*magnification in DST */
/* p1 point to beginning of scanline j*magnification in DST */
p1 = getP(DST, 0, j * magnification);
p1_save = p1;

/* p2 point to begining of scanline j in SRC */
/* p2 point to beginning of scanline j in SRC */
p2 = getP(SRC, 0, j);

i = width[SRC];
Expand All @@ -36,10 +36,10 @@
/* duplicate that line as needed */
if (magnification > 1)
{
/* p1 point to begining of scanline j*magnification in DST */
/* p1 point to beginning of scanline j*magnification in DST */
p1 = p1_save;

/* p2 points to begining of next line */
/* p2 points to beginning of next line */
p2 = p1;
p2step = ximage[DST]->bytes_per_line / sizeof(T);

Expand Down

0 comments on commit 18db9ac

Please sign in to comment.