From 5880e04fccef7c2e9a5f5a688e845bb1dc3b01a9 Mon Sep 17 00:00:00 2001 From: Robert Roth Date: Fri, 12 May 2017 05:14:17 +0300 Subject: Prepended disk io struct fields with disk_ prefix --- examples/diskio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/diskio.c b/examples/diskio.c index 112b4723..de6d775c 100644 --- a/examples/diskio.c +++ b/examples/diskio.c @@ -17,7 +17,7 @@ static void show_diskio(pid_t pid) printf("<%ld>\t", (long)pid); - printf("flags: %08lx rchar : %lu, wchar : %lu, read_bytes : %lu, write_bytes : %lu\n", (unsigned long)io.flags, io.rchar, io.wchar, io.rbytes, io.wbytes); + printf("flags: %08lx disk_rchar : %lu, disk_wchar : %lu, disk_read_bytes : %lu, disk_write_bytes : %lu\n", (unsigned long)io.flags, io.disk_rchar, io.disk_wchar, io.disk_rbytes, io.disk_wbytes); } -- cgit v1.2.1