Two more dangerous INIT BSS variables...

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@884 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2004-04-14 14:04:04 +00:00
parent f94ba5ebe1
commit 6c4fd1228c
1 changed files with 2 additions and 2 deletions

View File

@ -2490,11 +2490,11 @@ STATIC int LoadCountryInfoHardCoded(char *filename, COUNT ctryCode, COUNT codePa
** implementation of INSTALL=NANSI.COM /P /X /BLA
*/
int numInstallCmds = 0;
int numInstallCmds BSS_INIT(0);
struct instCmds {
char buffer[128];
int mode;
} InstallCommands[10];
} InstallCommands[10] BSS_INIT({0});
#ifdef DEBUG
#define InstallPrintf(x) printf x