[svn-r9555] Purpose: Fixing minor bug

Description:
    Xuan reported that "uint" used in this example caused error when
    built with MS Visual Studio compiler.

Solution:
    Changed to "int."

Platforms tested:
    Very minor, so I only tested on eirene.  I'll let Xuan know
    to check on Windows.

Misc. update:
This commit is contained in:
Binh-Minh Ribler 2004-11-21 14:24:08 -05:00
parent afebb37a42
commit d58b9bf5b2

View File

@ -54,7 +54,7 @@ int main (void)
/*
* Buffers' initialization.
*/
uint i,j;
int i,j;
int vector[MSPACE1_DIM];
vector[0] = vector[MSPACE1_DIM - 1] = -1;
for (i = 1; i < MSPACE1_DIM - 1; i++)