Skip to content

Commit

Permalink
Fixed definitions of HLOG* macros, they were causing build break on W…
Browse files Browse the repository at this point in the history
…indows (#398)
  • Loading branch information
ethouris authored and rndi committed May 25, 2018
1 parent 2d0e6f7 commit 38f7bba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions srtcore/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ written by

#if ENABLE_HEAVY_LOGGING

#define HLOGC(...) LOGC(__VA_ARGS__)
#define HLOGF(...) LOGF(__VA_ARGS__)
#define HLOGP(...) LOGP(__VA_ARGS__)
#define HLOGC LOGC
#define HLOGP LOGP
#define HLOGF LOGF

#else

Expand Down

0 comments on commit 38f7bba

Please sign in to comment.