From 9ffe1e9562dd8bd9db8190b80725308ba242f848 Mon Sep 17 00:00:00 2001 From: Stefen Guzik <guzik2@llnl.gov> Date: Thu, 14 May 2009 04:31:01 +0000 Subject: [PATCH] CGNS connectivity bug --- Geo/MZoneBoundary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geo/MZoneBoundary.h b/Geo/MZoneBoundary.h index 48c837c47f..12f4589e63 100644 --- a/Geo/MZoneBoundary.h +++ b/Geo/MZoneBoundary.h @@ -34,7 +34,7 @@ struct ZonePair int zone2; ZonePair(const int _zone1, const int _zone2) { - if(_zone1 < zone2) { + if(_zone1 < _zone2) { zone1 = _zone1; zone2 = _zone2; } -- GitLab