From 844dc6a239f3b23cc861b38f0c84f9f7fb7036d8 Mon Sep 17 00:00:00 2001 From: Trumeet Date: Sun, 21 Nov 2021 18:51:41 -0800 Subject: fix(common): incorrect error prompt --- common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.h b/common.h index ead08c2..950c9de 100644 --- a/common.h +++ b/common.h @@ -80,7 +80,7 @@ static int val_parse(char *in, struct val *o) } if (i != required_vars) { - fprintf(stderr, "Invalid Vec3D: %s. Example: -1,1,1.\n", in); + fprintf(stderr, "Invalid value: %s.\n", in); return 64; } return 0; -- cgit v1.2.3