From 203a974682bd1091833bafe98e797e2c0aa12722 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 30 Sep 2025 18:40:28 -0400 Subject: [PATCH] Fix typo. --- pdfio-content.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdfio-content.c b/pdfio-content.c index 78f0ad5..9ee1f2f 100644 --- a/pdfio-content.c +++ b/pdfio-content.c @@ -485,11 +485,11 @@ pdfioContentBeginMarked( const char *tag, // I - Tag name of marked content pdfio_dict_t *dict) // I - Dictionary of parameters or `NULL` if none { - if (!st || !name) + if (!st || !tag) return (false); // Send the BDC/BMC command... - if (!pdfioStreamPrintf(st, "%N", name)) + if (!pdfioStreamPrintf(st, "%N", tag)) return (false); if (dict)