ide/sdk: Fixed forcing bit depth option not invoked for static libraries
[sdk] / eda / libeda / src / idList.ec
index c05199e..9da121d 100644 (file)
@@ -221,6 +221,8 @@ public class Id : uint
                   PrintLn("Id::OnGetString -- data type"/*, this._class.name, */" has no class_data(nameField)");
                }
             }
+            else
+               sprintf(tempString, "(Invalid %s entry: %d)", tbl.name, this);
          }
          else
          {
@@ -498,7 +500,7 @@ public class StringList
 
    bool Add(String string)
    {
-      BTNode node { key = (uint)CopyString(string) };
+      BTNode node { key = (uintptr)CopyString(string) };
       if(strings.Add(node))
          return true;
       else