Automated commit of clang-format CI changes.

This commit is contained in:
lucaderi 2023-04-08 12:28:11 +00:00 committed by clang-format-bot
parent dfb41880d5
commit 37dbf7f059
41 changed files with 863 additions and 762 deletions

View file

@ -97,7 +97,10 @@ bool GenericHashEntry::is_active_entry_now_idle(u_int max_idleness) const {
/* ***************************************** */
void GenericHashEntry::getJSONObject(json_object *my_object, DetailsLevel details_level) {
json_object_object_add(my_object, "seen.first", json_object_new_int64(first_seen));
json_object_object_add(my_object, "seen.last", json_object_new_int64(last_seen));
void GenericHashEntry::getJSONObject(json_object *my_object,
DetailsLevel details_level) {
json_object_object_add(my_object, "seen.first",
json_object_new_int64(first_seen));
json_object_object_add(my_object, "seen.last",
json_object_new_int64(last_seen));
}