summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/utils.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ca2ba6f2b..bb47097c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-12-26 dana <dana@dana.is>
+
+ * unposted: Src/utils.c: Fix macro guard missed in previous
+ commit
+
2019-12-26 Daniel Shahaf <danielsh@apache.org>
* unposted: Src/utils.c: internal: Allow %L in zerrmsg() in
diff --git a/Src/utils.c b/Src/utils.c
index 597689b02..f5667f389 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -287,9 +287,7 @@ zerrmsg(FILE *file, const char *fmt, va_list ap)
{
const char *str;
int num;
-#ifdef DEBUG
long lnum;
-#endif
#ifdef HAVE_STRERROR_R
#define ERRBUFSIZE (80)
int olderrno;