schema compile CHANGE support for decimal64 type
diff --git a/src/tree_schema.h b/src/tree_schema.h
index 0b6713a..683bb6d 100644
--- a/src/tree_schema.h
+++ b/src/tree_schema.h
@@ -1044,8 +1044,7 @@
     struct lysc_ext_instance *exts;  /**< list of the extension instances ([sized array](@ref sizedarrays)) */
     LY_DATA_TYPE basetype;           /**< Base type of the type */
     uint32_t refcount;               /**< reference counter for type sharing */
-    uint64_t fraction_digits:1;      /**< fraction digits specification */
-    uint64_t div:63;                 /**< value for moving decimal point (dividing the stored value to get the real value) */
+    uint8_t fraction_digits;         /**< fraction digits specification */
     struct lysc_range *range;        /**< Optional range limitation */
 };