examples/element_declarations.c: Simplify first call to stackPushMalloc

.. where stackTop is NULL anyway
This commit is contained in:
Sebastian Pipping 2024-01-12 00:50:03 +01:00
parent 0ebca2b10f
commit 0b424cb9ae

View file

@ -142,8 +142,7 @@ dumpContentModelElement(const XML_Content *model, unsigned level,
static bool
dumpContentModel(const XML_Char *name, const XML_Content *root) {
printf("Element \"%" XML_FMT_STR "\":\n", name);
Stack *stackTop = NULL;
stackTop = stackPushMalloc(stackTop, root, 1);
Stack *stackTop = stackPushMalloc(NULL, root, 1);
if (! stackTop) {
return false;
}