Skip to content

Commit

Permalink
Fix typo when populating the warning level string
Browse files Browse the repository at this point in the history
  • Loading branch information
kcgen committed Oct 21, 2021
1 parent a9f232d commit d73e358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loguru.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1317,7 +1317,7 @@ namespace loguru
if (custom_level_name) {
snprintf(level_buff, sizeof(level_buff) - 1, "%s", custom_level_name);
} else {
snprintf(level_buff, sizeof(level_buff) - 1, "% 4d", verbosity);
snprintf(level_buff, sizeof(level_buff) - 1, "%4d", verbosity);
}

size_t pos = 0;
Expand Down

0 comments on commit d73e358

Please sign in to comment.