diff options
author | Martin Peschke <mpeschke@linux.vnet.ibm.com> | 2009-04-20 16:05:18 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-04-21 09:21:55 +0200 |
commit | 8d388c8ea6a58186bfdf7ca7fc4e1268eced8b14 (patch) | |
tree | 1fa1f669af69d08170946b23657cf37ef8748713 /stats.h | |
parent | 60886290e2ba6ddae1213f3a13929193180c8c55 (diff) | |
download | blktrace-8d388c8ea6a58186bfdf7ca7fc4e1268eced8b14.tar.gz blktrace-8d388c8ea6a58186bfdf7ca7fc4e1268eced8b14.tar.bz2 |
fix include statement in stats.h
Some endianess conversion macros have been moved and the corresponding
header file is gone. Need to adapt an include statement in stats.h. The
compiler did not complain because blkiomon.c accidently included blktrace.h
prior to stats.h. Introduced by blktrace rewrite which became version 2.
Signed-off-by: Martin Peschke <mpeschke@linux.vnet.ibm.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'stats.h')
-rw-r--r-- | stats.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ #define STATS_H #include <linux/types.h> -#include "endian.h" +#include "blktrace.h" struct minmax { __u64 min; |