Fix 1.69 was partly wrong
This commit is contained in:
parent
b6319e4d49
commit
0de7277790
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ align(pos, al)
|
||||||
int i = pos % al;
|
int i = pos % al;
|
||||||
|
|
||||||
if (i) return pos + (al - i);
|
if (i) return pos + (al - i);
|
||||||
return pos == 0 ? 1 : pos;
|
return pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
t_type *
|
t_type *
|
||||||
|
|
Loading…
Reference in a new issue