mirror of https://github.com/FDOS/kernel.git
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:
parent
f94ba5ebe1
commit
6c4fd1228c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue