aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_pci.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-10-11 14:34:07 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-10-11 14:34:07 +0100
commitf9b2c2750ee1563fb47803d2b1e9dd85447479f0 (patch)
tree89836a7ea05c252ec08b6cd4d1a4dbdd6a3f998e /tools/libxl/libxl_pci.c
parentc90bc4db252cf5d759ab335d10dd48033485ac26 (diff)
downloadxen-f9b2c2750ee1563fb47803d2b1e9dd85447479f0.tar.gz
xen-f9b2c2750ee1563fb47803d2b1e9dd85447479f0.tar.bz2
xen-f9b2c2750ee1563fb47803d2b1e9dd85447479f0.zip
libxl: fixup incorrect indentation
Several places which were previsously indented using hard tabs are now incorrectly indented. Fix them up. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl/libxl_pci.c')
-rw-r--r--tools/libxl/libxl_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c
index c1a62ceee7..26530bc4df 100644
--- a/tools/libxl/libxl_pci.c
+++ b/tools/libxl/libxl_pci.c
@@ -1113,7 +1113,7 @@ static int e820_sanitize(libxl_ctx *ctx, struct e820entry src[],
if ((src[i].type == E820_RAM) ||
(src[i].type == E820_UNUSABLE) ||
(src[i].type == 0))
- continue;
+ continue;
start = src[i].addr < start ? src[i].addr : start;
last = src[i].addr + src[i].size > last ?