Skip to content

Commit

Permalink
Fix "misleading indentation" wwarning.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Mar 25, 2021
1 parent df98e8b commit 4f6dcf3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/dtvconfparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
#include "channelutil.h"

#define PARSE_SKIP(VAR) do { \
if (it == tokens.end()) return false; ++it; } while(false)
if (it == tokens.end()) return false; \
++it; } while(false)

#define PARSE_CONF(VAR) do { \
if (it == tokens.end() || !(VAR).ParseConf(*it++)) \
Expand Down

0 comments on commit 4f6dcf3

Please sign in to comment.