From 3e5f5aabfc095a2a9d156296f9227ebedf3484d9 Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Fri, 2 Mar 2018 14:56:22 -0800 Subject: [PATCH] fix warning on windows (#22) --- src/indent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indent.cpp b/src/indent.cpp index eb266dc6bc..e7f96e9608 100644 --- a/src/indent.cpp +++ b/src/indent.cpp @@ -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); }