yang parser BUGFIX notification choice parsing

Fixes #1409
diff --git a/src/parser_yang.c b/src/parser_yang.c
index c6433a7..d92bc87 100644
--- a/src/parser_yang.c
+++ b/src/parser_yang.c
@@ -2820,7 +2820,7 @@
             LY_CHECK_RET(parse_any(ctx, kw, (struct lysp_node *)notif, &notif->child));
             break;
         case LY_STMT_CHOICE:
-            LY_CHECK_RET(parse_case(ctx, (struct lysp_node *)notif, &notif->child));
+            LY_CHECK_RET(parse_choice(ctx, (struct lysp_node *)notif, &notif->child));
             break;
         case LY_STMT_CONTAINER:
             LY_CHECK_RET(parse_container(ctx, (struct lysp_node *)notif, &notif->child));