X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7ddbdc25753a729517ed23899c83eb808acdd50f..ab6d61f18ed0c1177495aea3b0d3200cda426bca:/src/xbt/xbt_log_layout_simple.cpp diff --git a/src/xbt/xbt_log_layout_simple.cpp b/src/xbt/xbt_log_layout_simple.cpp index f4179ae4d5..6e4b400d71 100644 --- a/src/xbt/xbt_log_layout_simple.cpp +++ b/src/xbt/xbt_log_layout_simple.cpp @@ -10,18 +10,20 @@ #include "simgrid/host.h" /* sg_host_self_get_name */ #include "simgrid/msg.h" /* MSG_get_clock */ -#include +#include extern const char *xbt_log_priority_names[8]; extern int xbt_log_no_loc; -#define check_overflow(len) \ - if ((rem_size -= (len)) > 0) { \ - p += (len); \ - } else \ - return 0 +#define check_overflow(len) \ + do { \ + rem_size -= (len); \ + if (rem_size <= 0) \ + return 0; \ + p += (len); \ + } while (0) -static int xbt_log_layout_simple_doit(XBT_ATTRIB_UNUSED xbt_log_layout_t l, xbt_log_event_t ev, const char* fmt) +static int xbt_log_layout_simple_doit(xbt_log_layout_t, xbt_log_event_t ev, const char* fmt) { char *p = ev->buffer; int rem_size = ev->buffer_size; @@ -68,7 +70,7 @@ static int xbt_log_layout_simple_doit(XBT_ATTRIB_UNUSED xbt_log_layout_t l, xbt_ return 1; } -xbt_log_layout_t xbt_log_layout_simple_new(XBT_ATTRIB_UNUSED char* arg) +xbt_log_layout_t xbt_log_layout_simple_new(const char*) { xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1); res->do_layout = &xbt_log_layout_simple_doit;