loxi-prep: default xid to None
diff --git a/src/python/of10/error.py b/src/python/of10/error.py
index 700338b..f545bc5 100644
--- a/src/python/of10/error.py
+++ b/src/python/of10/error.py
@@ -19,6 +19,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_HELLO_FAILED
         self.data = ""
 
@@ -66,6 +67,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_BAD_REQUEST
         self.data = ""
 
@@ -113,6 +115,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_BAD_ACTION
         self.data = ""
 
@@ -160,6 +163,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_FLOW_MOD_FAILED
         self.data = ""
 
@@ -207,6 +211,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_PORT_MOD_FAILED
         self.data = ""
 
@@ -254,6 +259,7 @@
         ofp_error_msg.__init__(self)
         self.version = OFP_VERSION
         self.type = OFPT_ERROR
+        self.xid = None
         self.err_type = OFPET_QUEUE_OP_FAILED
         self.data = ""