From 1aaf0c83b9cdd5855a3a2cbff7538ad36f55cc24 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 19 Jan 2021 13:43:26 +0100 Subject: added while loops, simple intager math --- src/bvrvar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bvrvar.c') diff --git a/src/bvrvar.c b/src/bvrvar.c index 97b54b7..9e405ec 100644 --- a/src/bvrvar.c +++ b/src/bvrvar.c @@ -40,7 +40,7 @@ int bvr_var_set(char * item, char * value) { return SUCCESS; } } - fprintf(stderr, "[bvrvar.c] bvr_set: no more space on the variable stack for %s. Increase BVR_INITIAL_VARIABLES_COUNT (%d).", item, BVR_INITIAL_VARIABLES_COUNT); + fprintf(stderr, "[bvrvar.c] bvr_set: no more space on the variable stack for %s. Increase BVR_INITIAL_VARIABLES_COUNT (%d).\n", item, BVR_INITIAL_VARIABLES_COUNT); return FAILURE; } @@ -51,6 +51,6 @@ int bvr_var_mv(char * item, char * newname) { return SUCCESS; } } - fprintf(stderr, "[bvrvar.c] bvr_mv: variable %s not found!", item); + fprintf(stderr, "[bvrvar.c] bvr_mv: variable %s not found!\n", item); return FAILURE; } -- cgit v1.2.3