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:
richard 1999-01-05 21:27:31 +00:00
parent e1b3e7a1f5
commit 8fe11620e6

View file

@ -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;