From 9b0422a038d313a812e1c862122ec1f2b70add9a Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 1 Mar 2012 18:18:00 -0500 Subject: [PATCH] Endian wrapper use fix Signed-off-by: Mathieu Desnoyers --- formats/ctf/types/float.c | 2 +- formats/ctf/types/integer.c | 2 +- include/babeltrace/bitfield.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/formats/ctf/types/float.c b/formats/ctf/types/float.c index 0a953592..b2433bd8 100644 --- a/formats/ctf/types/float.c +++ b/formats/ctf/types/float.c @@ -24,7 +24,7 @@ #include #include /* C99 floating point definitions */ #include /* C99 limits */ -#include +#include /* * This library is limited to binary representation of floating point values. diff --git a/formats/ctf/types/integer.c b/formats/ctf/types/integer.c index 8ce2c3fa..5b56227d 100644 --- a/formats/ctf/types/integer.c +++ b/formats/ctf/types/integer.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include /* * The aligned read/write functions are expected to be faster than the diff --git a/include/babeltrace/bitfield.h b/include/babeltrace/bitfield.h index df8ab0b2..d14d562d 100644 --- a/include/babeltrace/bitfield.h +++ b/include/babeltrace/bitfield.h @@ -21,8 +21,8 @@ #include /* C99 5.2.4.2 Numerical limits */ #include /* C99 5.2.4.2 Numerical limits */ -#include /* Non-standard BIG_ENDIAN, LITTLE_ENDIAN, BYTE_ORDER */ #include +#include /* Non-standard BIG_ENDIAN, LITTLE_ENDIAN, BYTE_ORDER */ /* We can't shift a int from 32 bit, >> 32 and << 32 on int is undefined */ #define _bt_piecewise_rshift(_v, _shift) \ -- 2.34.1