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 Frith-MacDonald 1999-01-05 21:27:31 +00:00
parent 3732a3f592
commit 4906cb9402

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;