From ffabd0007b5226c8028942d97d07c8ebcaaad9ad Mon Sep 17 00:00:00 2001
From: Utz-Uwe Haus <uhaus@cray.com>
Date: Wed, 2 Jun 2021 08:44:26 +0200
Subject: [PATCH] Fix UINT vs INT attribute parsing confusion

---
 attributes/maestro-schema.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/attributes/maestro-schema.c b/attributes/maestro-schema.c
index 7e16b81c..2fffc0c5 100644
--- a/attributes/maestro-schema.c
+++ b/attributes/maestro-schema.c
@@ -3145,7 +3145,7 @@ mstro_attribute_val_cmp_str(mstro_schema_attribute attr,
       break;
       
     case MSTRO__POOL__AVAL__VAL_INT64:
-      assert(attrtype->kind == MSTRO_STP_UINT);
+      assert(attrtype->kind == MSTRO_STP_INT);
       lhsval = &aval->int64;
       break;
 
-- 
GitLab