From 8b31f3760e4eace5d60ca1f3dd519f1426448a20 Mon Sep 17 00:00:00 2001
From: Pompolic <pompolic@special-circumstanc.es>
Date: Mon, 20 Dec 2021 21:42:18 +0100
Subject: [PATCH] Remove debug text

---
 pdf.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/pdf.c b/pdf.c
index 8c1babc..291ca7a 100644
--- a/pdf.c
+++ b/pdf.c
@@ -1171,10 +1171,6 @@ bool
 validate_lparen(HParseResult *p, void *u)
 {
 	struct Env *aux = (struct Env*) u;
-	if(aux->paren_nest_depth > PAREN_MAX_NEST_DEPTH)
-	{
-		fprintf(stderr, "String nesting depth of %d exceeded!\n", PAREN_MAX_NEST_DEPTH); // DEBUG
-	}
 	return aux->paren_nest_depth < PAREN_MAX_NEST_DEPTH;
 }
 
-- 
GitLab