schema compile FORMAT minor issues
diff --git a/src/schema_compile_node.c b/src/schema_compile_node.c
index 88a2a07..5e7d96da 100644
--- a/src/schema_compile_node.c
+++ b/src/schema_compile_node.c
@@ -2319,11 +2319,13 @@
         cont->flags |= LYS_PRESENCE;
     } else if (cont_p->musts) {
         /* container with a must condition */
-        LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"must\" condition.", cont_p->name);
+        LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"must\" condition.",
+                cont_p->name);
         cont->flags |= LYS_PRESENCE;
     } else if (cont_p->when) {
         /* container with a when condition */
-        LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"when\" condition.", cont_p->name);
+        LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"when\" condition.",
+                cont_p->name);
         cont->flags |= LYS_PRESENCE;
     } else if (cont_p->parent) {
         if (cont_p->parent->nodetype == LYS_CHOICE) {
@@ -3644,7 +3646,7 @@
         node->flags &= ~LYS_CONFIG_MASK;
         node->flags |= LYS_CONFIG_R;
     } else if (!(node->flags & LYS_CONFIG_MASK)) {
-        /* config not explicitely set, inherit it from parent */
+        /* config not explicitly set, inherit it from parent */
         if (parent) {
             node->flags |= parent->flags & LYS_CONFIG_MASK;
         } else {
@@ -3652,7 +3654,7 @@
             node->flags |= LYS_CONFIG_W;
         }
     } else {
-        /* config set explicitely */
+        /* config set explicitly */
         node->flags |= LYS_SET_CONFIG;
     }