libxl: fix formatting of DEFINE_DEVICES_ADD
authorIan Jackson <ian.jackson@eu.citrix.com>
Fri, 3 Aug 2012 08:54:10 +0000 (09:54 +0100)
committerIan Jackson <ian.jackson@eu.citrix.com>
Fri, 3 Aug 2012 08:54:10 +0000 (09:54 +0100)
These lines were exactly 80 columns wide, which produces hideous wrap
damage in an 80 column emacs.  Reformat using emacs's C-c \,
which puts the \ in column 72 (by default) where possible.

Whitespace change only.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
tools/libxl/libxl_device.c

index 79dd5021cd8945dfdfa859ba69d43c4de0f966f7..4a531811d7bbe5a44d090744a63e245cefb1299d 100644 (file)
@@ -483,19 +483,19 @@ void libxl__multidev_prepared(libxl__egc *egc, libxl__ao_devices *aodevs,
  * libxl__add_nics
  */
 
-#define DEFINE_DEVICES_ADD(type)                                               \
-    void libxl__add_##type##s(libxl__egc *egc, libxl__ao *ao, uint32_t domid,  \
-                              int start, libxl_domain_config *d_config,        \
-                              libxl__ao_devices *aodevs)                       \
-    {                                                                          \
-        AO_GC;                                                                 \
-        int i;                                                                 \
-        int end = start + d_config->num_##type##s;                             \
-        for (i = start; i < end; i++) {                                        \
-            libxl__ao_device *aodev = libxl__multidev_prepare(aodevs);         \
-            libxl__device_##type##_add(egc, domid, &d_config->type##s[i-start],\
-                                       aodev);                                 \
-        }                                                                      \
+#define DEFINE_DEVICES_ADD(type)                                        \
+    void libxl__add_##type##s(libxl__egc *egc, libxl__ao *ao, uint32_t domid, \
+                              int start, libxl_domain_config *d_config, \
+                              libxl__ao_devices *aodevs)                \
+    {                                                                   \
+        AO_GC;                                                          \
+        int i;                                                          \
+        int end = start + d_config->num_##type##s;                      \
+        for (i = start; i < end; i++) {                                 \
+            libxl__ao_device *aodev = libxl__multidev_prepare(aodevs);  \
+            libxl__device_##type##_add(egc, domid, &d_config->type##s[i-start], \
+                                       aodev);                          \
+        }                                                               \
     }
 
 DEFINE_DEVICES_ADD(disk)