Browse Source

Pavel Chromy spotted duplicated newlines gaffe from yours sincerely.

git-svn-id: svn://svn.berlios.de/openocd/trunk@381 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.1.0
oharboe 16 years ago
parent
commit
2d48f25dcf
2 changed files with 6 additions and 1 deletions
  1. +5
    -0
      src/helper/log.h
  2. +1
    -1
      src/helper/options.c

+ 5
- 0
src/helper/log.h View File

@@ -85,6 +85,11 @@ extern int debug_level;
log_printfnl (LOG_INFO, __FILE__, __LINE__, __FUNCTION__, expr); \
} while(0)

#define INFO_SAMELINE(expr ...) \
do { if (debug_level >= LOG_INFO) \
log_printf (LOG_INFO, __FILE__, __LINE__, __FUNCTION__, expr); \
} while(0)

#define WARNING(expr ...) \
do { \
log_printfnl (LOG_WARNING, __FILE__, __LINE__, __FUNCTION__, expr); \


+ 1
- 1
src/helper/options.c View File

@@ -48,7 +48,7 @@ static struct option long_options[] =

int configuration_output_handler(struct command_context_s *context, char* line)
{
INFO(line);
INFO_SAMELINE(line);

return ERROR_OK;
}


Loading…
Cancel
Save