Skip to content

Commit

Permalink
Fix c++ style comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aquette committed Oct 5, 2016
1 parent 16d2284 commit 60eef39
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/common.c
Expand Up @@ -411,11 +411,11 @@ void upsdebug_with_errno(int level, const char *fmt, ...)
if (nut_debug_level < level)
return;

// For debugging output, we want to prepend the debug level so the user can
// e.g. lower the level (less -D's on command line) to retain just the amount
// of logging info he needs to see at the moment. Using '-DDDDD' all the time
// is too brutal and needed high-level overview can be lost. This [D#] prefix
// can help limit this debug stream quicker, than experimentally picking ;)
/* For debugging output, we want to prepend the debug level so the user can
* e.g. lower the level (less -D's on command line) to retain just the amount
* of logging info he needs to see at the moment. Using '-DDDDD' all the time
* is too brutal and needed high-level overview can be lost. This [D#] prefix
* can help limit this debug stream quicker, than experimentally picking ;) */
char fmt2[LARGEBUF];
if (level > 0) {
int ret;
Expand All @@ -440,7 +440,7 @@ void upsdebugx(int level, const char *fmt, ...)
if (nut_debug_level < level)
return;

// See comments above in upsdebug_with_errno() - they apply here too.
/* See comments above in upsdebug_with_errno() - they apply here too. */
char fmt2[LARGEBUF];
if (level > 0) {
int ret;
Expand Down

0 comments on commit 60eef39

Please sign in to comment.