diff options
| author | 2014-09-13 01:06:14 +0200 | |
|---|---|---|
| committer | 2014-09-13 01:06:14 +0200 | |
| commit | b7976d2a53b27ec9c42f81a22e91704dbcc5fb53 (patch) | |
| tree | 6a8ce914448972f357e65b0d37118b4ed685cf28 /src/log.h | |
| parent | e72f2f79df5b72e71195fb7f27f5a0b525d05e4e (diff) | |
| download | usbmuxd-b7976d2a53b27ec9c42f81a22e91704dbcc5fb53.tar.gz usbmuxd-b7976d2a53b27ec9c42f81a22e91704dbcc5fb53.tar.bz2 | |
Properly rename header guards according to C++ standard
Diffstat (limited to 'src/log.h')
| -rw-r--r-- | src/log.h | 5 |
1 files changed, 2 insertions, 3 deletions
| @@ -19,8 +19,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |||
| 19 | 19 | ||
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #ifndef __LOG_H__ | 22 | #ifndef LOG_H |
| 23 | #define __LOG_H__ | 23 | #define LOG_H |
| 24 | 24 | ||
| 25 | enum loglevel { | 25 | enum loglevel { |
| 26 | LL_FATAL = 0, | 26 | LL_FATAL = 0, |
| @@ -40,5 +40,4 @@ void log_disable_syslog(); | |||
| 40 | 40 | ||
| 41 | void usbmuxd_log(enum loglevel level, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); | 41 | void usbmuxd_log(enum loglevel level, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); |
| 42 | 42 | ||
| 43 | |||
| 44 | #endif | 43 | #endif |
