From a153a91671e462f1d1f231dabd6f5f81efd81d76 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 18 Feb 2018 16:10:21 +0100 Subject: [PATCH] do not mix the enums (good catch, sonar) --- src/surf/xml/surfxml_sax_cb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/surf/xml/surfxml_sax_cb.cpp b/src/surf/xml/surfxml_sax_cb.cpp index 83073b4f0f..d3a116868d 100644 --- a/src/surf/xml/surfxml_sax_cb.cpp +++ b/src/surf/xml/surfxml_sax_cb.cpp @@ -599,7 +599,7 @@ void ETag_surfxml_link(){ XBT_WARN("FULLDUPLEX is now deprecated. Please update your platform file to use SPLITDUPLEX instead."); link.policy = SURF_LINK_SPLITDUPLEX; break; - case A_surfxml_cluster_sharing___policy_SPLITDUPLEX: + case A_surfxml_link_sharing___policy_SPLITDUPLEX: link.policy = SURF_LINK_SPLITDUPLEX; break; default: -- 2.20.1