X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fdaemon%2Futils_time.c;h=5c0f68e70279c7c3328f0cc49289aca52c9472ae;hp=a807c7f948ce6ea55d8df9aec95b1459515c3730;hb=06a86a60a7dabc685bdbd81ce3d36ea5f7e2c2d4;hpb=7ef225022164d12f4560d03789c9d418b442d4cf 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;