Skip to content
This repository has been archived by the owner on Dec 10, 2020. It is now read-only.

Commit

Permalink
fix warning on windows (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas authored Mar 2, 2018
1 parent 4a51784 commit 3e5f5aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ static size_t calc_indent_continue(parse_frame_t &frm, size_t pse_tos)
int ic = cpd.settings[UO_indent_continue].n;

controlPSECount(frm.pse_tos);
if (ic < 0 && frm.pse[pse_tos].indent_cont > 0)
if (ic < 0 && frm.pse[pse_tos].indent_cont)
{
return(frm.pse[pse_tos].indent);
}
Expand Down

0 comments on commit 3e5f5aa

Please sign in to comment.