From 405c6aa253dde1c36ebfc4323c2c642b3b277708 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Mon, 19 Dec 2016 14:09:12 +0100 Subject: [PATCH] Misaligned code --- include/Host.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Host.h b/include/Host.h index 39688506af..d1a671f8e2 100644 --- a/include/Host.h +++ b/include/Host.h @@ -114,7 +114,7 @@ class Host : public GenericHost { inline void setOS(char *_os) { if(os[0] == '\0') snprintf(os, sizeof(os), "%s", _os); } inline IpAddress* get_ip() { return(&ip); } void set_mac(char *m); - inline bool isBlacklisted() { return(blacklisted_host); } + inline bool isBlacklisted() { return(blacklisted_host); } inline u_int8_t* get_mac() { return(mac ? mac->get_mac() : NULL); } inline Mac* getMac() { return(mac); } inline char* get_os() { return(os); }