Skip to content

Commit 75cb743

Browse files
committed
Bugfix
1 parent 150fdeb commit 75cb743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bdecli.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ void bde_config_write(pBDEConfigEntry list, char *szFileName)
427427

428428
/* check if we should put the 'end of container' byte sequence */
429429
if ((current->next) && /* there is a next entry */
430-
(current->entry_type = BDE_Variable) && /* current entry is a variable */
430+
(current->entry_type == BDE_Variable) && /* current entry is a variable */
431431
(current->container != current->next->container)) /* and it has a different container */
432432
{
433433
eob = 0;

src/build-vc10.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set INCLUDE=%VCDIR%\VC\INCLUDE;%PSDK%\Include\um
77
set LIB=%VCDIR%\VC\LIB;%PSDK%\Lib\winv6.3\um\x86
88
set PATH=%VCDIR%\Common7\IDE;%VCDIR%\VC\BIN;%PATH%
99

10-
cl.exe /W3 bdecli.c > bdecli.vc10.err
10+
cl.exe /W4 bdecli.c > bdecli.vc10.err
1111
rem /W1 to /W4 for warnings, /WX to treat warning as errors, /O2 for moderate optimization
1212

1313
del *.obj

0 commit comments

Comments
 (0)