mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:10:48 +00:00
Fixed typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3528 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3732a3f592
commit
4906cb9402
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ static void growMatrix (tMatrix m, int numRows, int numCols)
|
|||
|
||||
if (numCols > m->allocatedCols) {
|
||||
/* Grow the existing rows to numCols */
|
||||
for (i = 0; i < allocatedRows; i++) {
|
||||
for (i = 0; i < m->allocatedRows; i++) {
|
||||
m->matrix[i] = realloc (m->matrix[i], numCols * sizeof (BOOL));
|
||||
for (j = m->allocatedCols - 1; j < numCols; j++)
|
||||
m->matrix[i][j] = NO;
|
||||
|
|
Loading…
Reference in a new issue