Fix various minor issues on the auditlog schema

This commit is contained in:
Felipe Zimmerle
2015-08-27 17:50:42 -03:00
parent 24b7d72666
commit e89e395a32
5 changed files with 13 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ double random_number(const double from, const double to) {
std::string dash_if_empty(const std::string& str) {
if (str.empty()) {
if (&str == NULL || str.empty()) {
return "-";
}