ssnail

crappy and opinionated static site generator
git clone https://git.e1e0.net/ssnail.git
Log | Files | Refs | README | LICENSE

commit dc094dbed5524ab5d8b7963e2503191bcdc931a1
parent 70bfc3bcf7c75d2cec6b1f197f9ebe12769f4890
Author: Paco Esteban <paco@e1e0.net>
Date:   Mon, 22 Jun 2020 19:12:05 +0200

Error messages a bit more explicit

Diffstat:
Merror.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/error.c b/error.c @@ -64,7 +64,7 @@ void * ssnail_error_fprintf(const struct ssnail_error *error) { /* not checking for fprintf errors */ - fprintf(stderr, "%s: %s\n", getprogname(), error->msg); + fprintf(stderr, "%s: ERR: %s\n", getprogname(), error->msg); return NULL; }