shithub: trueawk

Download patch

ref: 9c63cb6ccd303fb64b703ff0836400f204078621
parent: b78514101907978f7776df1b5d95dac8a7798129
author: Arnold D. Robbins <arnold@skeeve.com>
date: Fri Aug 7 09:15:17 EDT 2020

Update FIXES and version in main.c.

--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,11 @@
 This file lists all bug fixes, changes, etc., made since the AWK book
 was sent to the printers in August, 1987.
 
+August 7, 2020:
+	Merge PR #93, which adds casts to (void*) for debug prints
+	using the %p format specifier. Thanks to GitHub user YongHaoWu
+	("Chris") for the fixes.
+
 August 4, 2020:
 	In run.c, use non-restartable multibyte routines to attain
 	portability to DJGPP. Should fix Issue 92. Thanks to Albert Wik
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20200804";
+const char	*version = "version 20200807";
 
 #define DEBUG
 #include <stdio.h>
--