That message means that a variable with name i is getting declared twice in the same block of code. MOst likely this is because the code is declaring a temporary variable named i inside of a loop. This is legal to do and most mdoern compilers don't have a problem with it, but some older compilers declare variables for the whole method instead of the block of code and have trouble with doing this.
|