diff --git a/cli.c b/cli.c index be77bcc..8ccf3dd 100644 --- a/cli.c +++ b/cli.c @@ -111,7 +111,7 @@ main(int argc, char* argv[]) /* argument processing */ if( !(argc == 2) ) { - fprintf(stderr, "usage: %s \n", PROG_NAME); + fprintf(stderr, "usage: %s \n", "numericx"); return E2BIG; } @@ -144,19 +144,19 @@ main(int argc, char* argv[]) { case EINVAL: fprintf(stderr, "error: %s: %s. Resulting string argument value has to be NULL.\n", - PROG_NAME, strerror(EINVAL)); + "numericx", strerror(EINVAL)); break; case EDOM: fprintf(stderr, "error: %s: %s. Valid numerals are: \"%s\".\n", - PROG_NAME, strerror(EDOM), from); + "numericx", strerror(EDOM), from); break; case ERANGE: - fprintf(stderr, "error: %s: Unrepresentable void number.\n", PROG_NAME); + fprintf(stderr, "error: %s: Unrepresentable void number.\n", "numericx"); break; } if( !(status == true) ) { - fprintf(stderr, "error: %s: Incapable of translating.\n", PROG_NAME); + fprintf(stderr, "error: %s: Incapable of translating.\n", "numericx"); free(from); free(to); numericx_free(result); 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; } diff --git a/numericx.h b/numericx.h index 0a9a399..6870710 100644 --- a/numericx.h +++ b/numericx.h @@ -6,7 +6,6 @@ #include -#define PROG_NAME "numericx" /* ||DATA STRUCTURE|| */