WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fixed syntax error in iopif patch.

# HG changeset patch
# User jbulpin@xxxxxxxxxxxxxxxxxxxxxxx
# Node ID d1b5ad8e8b03b5e79d86d0844b46345a0f931390
# Parent  a4bd444c54249beefabfd9608ff04a61be569215
Fixed syntax error in iopif patch.

Signed-off-by: James Bulpin <james@xxxxxxxxxxxxx>

diff -r a4bd444c5424 -r d1b5ad8e8b03 tools/python/xen/xm/create.py
--- a/tools/python/xen/xm/create.py     Mon Nov  7 11:53:38 2005
+++ b/tools/python/xen/xm/create.py     Mon Nov  7 12:04:27 2005
@@ -643,7 +643,7 @@
     ioports = []
     for v in vals.ioports:
         d = v.split('-')
-        if len(d) < 1 || len(d) > 2:
+        if len(d) < 1 or len(d) > 2:
             err('Invalid i/o port range specifier: ' + v)
         if len(d) == 1:
             d.append(d[0])

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fixed syntax error in iopif patch., Xen patchbot -unstable <=