X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdaemon%2Futils_time.c;h=5c0f68e70279c7c3328f0cc49289aca52c9472ae;hb=b9b5e5d573d0011c4f3276e9b84b73ba4dd2e870;hp=a807c7f948ce6ea55d8df9aec95b1459515c3730;hpb=109aa67e9a982321af6547b92b5b2b6c8ae2c244;p=collectd.git diff --git a/src/daemon/utils_time.c b/src/daemon/utils_time.c index a807c7f9..5c0f68e7 100644 --- a/src/daemon/utils_time.c +++ b/src/daemon/utils_time.c @@ -144,7 +144,7 @@ static int format_zone(char *buffer, size_t buffer_size, } /* }}} int format_zone */ int format_rfc3339(char *buffer, size_t buffer_size, struct tm const *t_tm, - long nsec, _Bool print_nano, char const *zone) /* {{{ */ + long nsec, bool print_nano, char const *zone) /* {{{ */ { int len; char *pos = buffer; @@ -167,7 +167,7 @@ int format_rfc3339(char *buffer, size_t buffer_size, struct tm const *t_tm, } /* }}} int format_rfc3339 */ int format_rfc3339_utc(char *buffer, size_t buffer_size, cdtime_t t, - _Bool print_nano) /* {{{ */ + bool print_nano) /* {{{ */ { struct tm t_tm; long nsec = 0; @@ -181,7 +181,7 @@ int format_rfc3339_utc(char *buffer, size_t buffer_size, cdtime_t t, } /* }}} int format_rfc3339_utc */ int format_rfc3339_local(char *buffer, size_t buffer_size, cdtime_t t, - _Bool print_nano) /* {{{ */ + bool print_nano) /* {{{ */ { struct tm t_tm; long nsec = 0;