Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > Vthread > Vthread__Matrix_Mult__Bench
changeset 2:b2bced9907ea tip
Make variable type portable
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Wed, 22 Jun 2011 18:45:44 +0200 |
| parents | 103a5f3b74cf |
| children | |
| files | src/Application/Matrix_Mult.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/src/Application/Matrix_Mult.c Tue Oct 26 19:37:08 2010 -0700 1.2 +++ b/src/Application/Matrix_Mult.c Wed Jun 22 18:45:44 2011 +0200 1.3 @@ -51,7 +51,7 @@ 1.4 read_Matrix_From_File( Matrix *matrixStruc, char *matrixFileName ) 1.5 { int row, maxRead, numRows, numCols; 1.6 float32 *matrixStart; 1.7 - int32 lineSz = 0; 1.8 + size_t lineSz = 0; 1.9 FILE *file; 1.10 char *line = NULL; 1.11
