libxl: suspend: trailing ws in libxl_save_msgs_gen.pl
authorIan Jackson <ian.jackson@eu.citrix.com>
Tue, 11 Mar 2014 11:31:32 +0000 (11:31 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 17 Mar 2014 15:53:59 +0000 (15:53 +0000)
libxl_save_msgs_gen.pl has some trailing whitespace.  This can make
git complain annoyingly.  Remove the trailing whitespace.

(The file also contains tabs.  Leave these as they are to avoid a big
and intrusive diff.)

No functional change.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
---
v3: New patch in v3 of the series.

tools/libxl/libxl_save_msgs_gen.pl

index ee126c786a43eb0d931ed5e6870db64a7451e572..0dbafcae613425100906c53a3f23968ff4be0769 100755 (executable)
@@ -23,9 +23,9 @@ our @msgs = (
                                                  STRING doing_what),
                                                 'unsigned long', 'done',
                                                 'unsigned long', 'total'] ],
-    [  3, 'scxW',   "suspend", [] ],         
-    [  4, 'scxW',   "postcopy", [] ],        
-    [  5, 'scxA',   "checkpoint", [] ],      
+    [  3, 'scxW',   "suspend", [] ],
+    [  4, 'scxW',   "postcopy", [] ],
+    [  5, 'scxA',   "checkpoint", [] ],
     [  6, 'scxA',   "switch_qemu_logdirty",  [qw(int domid
                                               unsigned enable)] ],
     #                toolstack_save          done entirely `by hand'
@@ -199,7 +199,7 @@ static void BLOCK_put(unsigned char *const buf,
     uint32_t_put(buf, len, size);
     bytes_put(buf, len, bytes, size);
 }
-    
+
 static void STRING_put(unsigned char *const buf,
                       int *len,
                       const char *string)
@@ -209,7 +209,7 @@ static void STRING_put(unsigned char *const buf,
     assert(slen < (uint32_t)0x40000000);
     BLOCK_put(buf, len, (const void*)string, slen+1);
 }
-    
+
 END
 
 foreach my $sr (qw(save restore)) {