about summary refs log tree commit diff stats
path: root/numericx.c
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2022-03-19 07:43:14 +0000
committerDaniel Santos <dacs.git@brilhante.top>2022-03-19 07:43:14 +0000
commitf5421e76128a30138b0298e2ec29ad5a0f07249c (patch)
tree63ac833f2199e75a211f7112be84bd9efe14f375 /numericx.c
parentfcc6c957bfb391b675b3f251a28ec988e31ff50c (diff)
downloadnumericx-c-f5421e76128a30138b0298e2ec29ad5a0f07249c.tar.gz
replace PROG_NAME with "numericx" literal
 * replaced PROG_NAME for string literal "numericx".
 * deleted macro definition of PROG_NAME.

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
Diffstat (limited to 'numericx.c')
-rw-r--r--numericx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numericx.c b/numericx.c
index 306c6cf..5c70012 100644
--- a/numericx.c
+++ b/numericx.c
@@ -30,7 +30,7 @@ new_digit(numeral_ptr* last_numeral, char const* to_first)
 	numeral_ptr* new_numeral = malloc(sizeof(numeral_ptr));
 	if(new_numeral == NULL)
 	{
-		fprintf(stderr, "error: %s: %s!", PROG_NAME, strerror(ENOMEM));
+		fprintf(stderr, "error: %s: %s!", "numericx", strerror(ENOMEM));
 		return NULL;
 	}