Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
oboroc committed Jan 7, 2014
1 parent 150fdeb commit 75cb743
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bdecli.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ void bde_config_write(pBDEConfigEntry list, char *szFileName)

/* check if we should put the 'end of container' byte sequence */
if ((current->next) && /* there is a next entry */
(current->entry_type = BDE_Variable) && /* current entry is a variable */
(current->entry_type == BDE_Variable) && /* current entry is a variable */
(current->container != current->next->container)) /* and it has a different container */
{
eob = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/build-vc10.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set INCLUDE=%VCDIR%\VC\INCLUDE;%PSDK%\Include\um
set LIB=%VCDIR%\VC\LIB;%PSDK%\Lib\winv6.3\um\x86
set PATH=%VCDIR%\Common7\IDE;%VCDIR%\VC\BIN;%PATH%

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

del *.obj

0 comments on commit 75cb743

Please # to comment.