From d58b9bf5b22522cd51949941f1a61949467dc354 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sun, 21 Nov 2004 14:24:08 -0500 Subject: [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: --- c++/examples/writedata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/examples/writedata.cpp b/c++/examples/writedata.cpp index fbaac1f..8e0404c 100644 --- a/c++/examples/writedata.cpp +++ b/c++/examples/writedata.cpp @@ -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++) -- cgit v0.12