From: Shamus Hammons Date: Tue, 3 Feb 2015 14:37:00 +0000 (-0600) Subject: Changed wording of warning to be more clear to end user. X-Git-Tag: v1.7.1~22 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=commitdiff_plain;h=1614b4cc590514679e0b358e424e168c6e430b02 Changed wording of warning to be more clear to end user. --- diff --git a/rln.c b/rln.c index a1ab13e..219697c 100644 --- a/rln.c +++ b/rln.c @@ -1362,7 +1362,7 @@ int write_ofile(struct OHEADER * header) case 0x08000000: abstype = (short)ABST_DEFINED | ABST_BSS; break; case 0x09000000: abstype = (short)ABST_DEFINED | ABST_GLOBAL | ABST_BSS; break; default: - printf("write_ofile: abs, cannot determine symbol type\n"); + printf("warning (write_ofile): ABS, cannot determine symbol type ($%08X)\n", type); type = 0; break; } diff --git a/rln.h b/rln.h index b29ceda..dcc8ae0 100644 --- a/rln.h +++ b/rln.h @@ -52,7 +52,7 @@ #define MAJOR 1 // Major version number #define MINOR 3 // Minor version number -#define PATCH 4 // Patch release number +#define PATCH 5 // Patch release number #ifdef WIN32 #define PLATFORM "Win32" // Release platform - Windows