From 31d4ee0887e0ea68a6265293fd41e56fb0d16da0 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 23 Nov 2008 15:58:33 +0000 Subject: [PATCH] attempt 2 fixed git-svn-id: svn://anubis/gvsu@250 45c1a28c-8058-47b2-ae61-ca45b979098e --- cs677/hw4/src/transpose.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cs677/hw4/src/transpose.cc b/cs677/hw4/src/transpose.cc index a81bbee..3bb5220 100644 --- a/cs677/hw4/src/transpose.cc +++ b/cs677/hw4/src/transpose.cc @@ -98,7 +98,7 @@ int main(int argc, char * argv[]) if (proccount <= 0) { toproc++; - proccount = ccounts[toproc]; + proccount = counts[toproc]; } } @@ -110,7 +110,7 @@ int main(int argc, char * argv[]) { for (int j = 0; j < n; j++) { - cout << recvmatrix[i][j] << " "; + cout << matrix[i][j] << " "; } cout << endl; }