Skip to content

Commit

Permalink
Revert "Make event_debug_get_logging_mask_() real symbol (win32)"
Browse files Browse the repository at this point in the history
This reverts commit 5f17c12.
  • Loading branch information
azat committed May 29, 2017
1 parent 5f17c12 commit 3ac4f17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions log-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ extern "C" {
#endif

#ifdef EVENT_DEBUG_LOGGING_ENABLED
EVENT2_EXPORT_SYMBOL
int event_debug_get_logging_mask_();
EVENT2_EXPORT_SYMBOL extern ev_uint32_t event_debug_logging_mask_;
#define event_debug_get_logging_mask_() (event_debug_logging_mask_)
#else
#define event_debug_get_logging_mask_() (0)
#endif
Expand Down
6 changes: 0 additions & 6 deletions log.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,6 @@ static event_fatal_cb fatal_fn = NULL;
#endif

EVENT2_EXPORT_SYMBOL ev_uint32_t event_debug_logging_mask_ = DEFAULT_MASK;

EVENT2_EXPORT_SYMBOL
int event_debug_get_logging_mask_()
{
return event_debug_logging_mask_;
}
#endif /* EVENT_DEBUG_LOGGING_ENABLED */

void
Expand Down

0 comments on commit 3ac4f17

Please sign in to comment.