Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mx_log: Fix indent in mx_log.h
  • Loading branch information
mariux committed May 13, 2015
1 parent 4d9c58c commit a91b8f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mx_log.h
Expand Up @@ -6,9 +6,9 @@
#define MX_LOG_SYSLOG_TO_MXLOG(x) ((x)+1)
#define MX_LOG_MXLOG_TO_SYSLOG(x) ((x)-1)

#ifndef mx_free_null
#include <stdlib.h>
#define mx_free_null(a) do { free((a)); (a) = NULL; } while(0)
#if !defined mx_free_null
# include <stdlib.h>
# define mx_free_null(a) do { free((a)); (a) = NULL; } while(0)
#endif

#define MX_LOG_NONE 0
Expand Down

0 comments on commit a91b8f8

Please sign in to comment.