From 2c23dcaf3f7f735ae24ecc6ff43ce9a23360ab5f Mon Sep 17 00:00:00 2001
From: Lev Walkin <vlm@lionet.info>
Date: Wed, 6 Dec 2006 08:39:47 +0000
Subject: [PATCH] do not account negatives

---
 skeletons/asn_internal.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/skeletons/asn_internal.h b/skeletons/asn_internal.h
index 67f055a6..ff632778 100644
--- a/skeletons/asn_internal.h
+++ b/skeletons/asn_internal.h
@@ -70,6 +70,7 @@ static inline void ASN_DEBUG(const char *fmt, ...) { (void)fmt; }
 	int __nl = ((nl) != 0);						\
 	int __i;							\
 	if(__nl) _ASN_CALLBACK("\n", 1);				\
+	if(__level < 0) __level = 0;					\
 	for(__i = 0; __i < __level; __i++)				\
 		_ASN_CALLBACK("    ", 4);				\
 	er.encoded += __nl + 4 * __level;				\
-- 
GitLab