schema tree REFACTOR rename path_context to path_mod
Context module variables are always called mod.
diff --git a/src/tree_schema.h b/src/tree_schema.h
index 71bf06e..f1a3ced 100644
--- a/src/tree_schema.h
+++ b/src/tree_schema.h
@@ -1345,7 +1345,7 @@
LY_DATA_TYPE basetype; /**< Base type of the type */
uint32_t refcount; /**< reference counter for type sharing */
struct lyxp_expr *path; /**< parsed target path, compiled path cannot be stored because of type sharing */
- struct lys_module *path_context; /**< module where the path is defined, so it provides context to resolve prefixes */
+ const struct lys_module *path_mod; /**< module where the path is defined, so it provides context to resolve prefixes */
struct lysc_type *realtype; /**< pointer to the real (first non-leafref in possible leafrefs chain) type. */
uint8_t require_instance; /**< require-instance flag */
};