X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fzfs_arc.c;h=730d30483b5eff16961e7167b58fa3a3e62f7864;hp=86af7d498b22e2603d7380e91e3b5fcd878fdb11;hb=e746ad785774de37a30302fef65f1c4aaf8698ab;hpb=f81a5a84d3d5fc941b624c28b1ab70971cc23ac9 diff --git a/src/zfs_arc.c b/src/zfs_arc.c index 86af7d49..730d3048 100644 --- a/src/zfs_arc.c +++ b/src/zfs_arc.c @@ -216,12 +216,14 @@ static int za_read(void) { // See kstat_seq_show_headers module/spl/spl-kstat.c of the spl kernel // module. if (fgets(buffer, sizeof(buffer), fh) == NULL) { - ERROR("zfs_arc plugin: \"%s\" does not contain a single line.", ZOL_ARCSTATS_FILE); + ERROR("zfs_arc plugin: \"%s\" does not contain a single line.", + ZOL_ARCSTATS_FILE); fclose(fh); return -1; } if (fgets(buffer, sizeof(buffer), fh) == NULL) { - ERROR("zfs_arc plugin: \"%s\" does not contain at least two lines.", ZOL_ARCSTATS_FILE); + ERROR("zfs_arc plugin: \"%s\" does not contain at least two lines.", + ZOL_ARCSTATS_FILE); fclose(fh); return -1; }