shithub: trueawk

Download patch

ref: 416c6db5ee829b5e97dc8001b28e475fd942dbb6
parent: ff5d67610caab71d38625c3f1788547d00391337
author: Arnold D. Robbins <arnold@skeeve.com>
date: Sun Dec 8 16:43:32 EST 2019

Update version and FIXES.

--- 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.
 
+December 8, 2019:
+	Fix the return value of sprintf("%d") on 32 bit systems.
+	Thanks to Jim Lowe for the report and to Christos Zoulas
+	for the fix.
+
 November 10, 2019:
 	Convert a number of Boolean integer variables into
 	actual bools. Convert compile_time variable into an
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20191110";
+const char	*version = "version 20191208";
 
 #define DEBUG
 #include <stdio.h>
--