EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Archive::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=621)
-   -   Minor compiler error fix (https://www.eqemulator.org/forums/showthread.php?t=15226)

Floppie 08-07-2004 08:17 PM

Minor compiler error fix
 
When attempting to compile zone (step 10 in that handy guide you have to setting up a server), one will find that client_process.cpp has an error on line 5017. "int i is redefined" or something to that effect.

The complete line reads:
Code:

for(int i = 0; i < 9; i++)
Pretty simple to just hit backspace four times and take out the definition statement. Well, I'm sure people found this annoying (or those with N.O.O.B., or "Not One Operative Braincell" found it cumbersome), so I'm posting the fix here.

Anyway. The point to this post is, line 5017 of client_process.cpp should be changed to:
Code:

for(i = 0; i < 9; i++)

cofruben 08-07-2004 11:47 PM

lol,always seen that error,and still forgeting to remove it...will change that in some hours,sorry.


All times are GMT -4. The time now is 11:54 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.