mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -43,13 +43,15 @@ jobs:
|
||||
# Fails on configure on GCC and clang (process restrictions?)
|
||||
# - fedora:rawhide
|
||||
- fedora:latest
|
||||
- fedora:42
|
||||
- fedora:41
|
||||
- fedora:40
|
||||
- fedora:39
|
||||
- fedora:38
|
||||
- fedora:37
|
||||
- ubuntu:latest
|
||||
- ubuntu:oracular
|
||||
- ubuntu:noble
|
||||
- ubuntu:mantic
|
||||
- ubuntu:jammy
|
||||
- ubuntu:focal
|
||||
# On Ubuntu Bionic the Meson doesn't support feature options
|
||||
|
||||
3
status.c
3
status.c
@@ -43,7 +43,8 @@ void status_send_values(const char *id, struct status_value *values)
|
||||
|
||||
status_get_ts(&ts);
|
||||
|
||||
len = snprintf(buf, sizeof(buf), "{\"ts\":%ld.%03ld, \"%s\":{ ", ts.tv_sec, ts.tv_nsec / 1000000, id);
|
||||
len = snprintf(buf, sizeof(buf), "{\"ts\":%lld.%03ld, \"%s\":{ ",
|
||||
(long long int)ts.tv_sec, ts.tv_nsec / 1000000, id);
|
||||
|
||||
for (value = values; value->unit; value++) {
|
||||
if (value != values) {
|
||||
|
||||
Reference in New Issue
Block a user