From 4d0e65b3b6f442a9a08f57624f4b407aa1545d8e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 7 Jan 2024 11:56:56 +0100 Subject: [PATCH] Extend the error message --- src/spicelib/parser/sperror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spicelib/parser/sperror.c b/src/spicelib/parser/sperror.c index 915afc79c..d669260d6 100644 --- a/src/spicelib/parser/sperror.c +++ b/src/spicelib/parser/sperror.c @@ -42,7 +42,7 @@ const char *SPerror(int type) msg = "no such terminal on this device"; break; case E_BADPARM: - msg = "no such parameter on this device"; + msg = "no such parameter on this device or parameter is missing"; break; case E_NOMEM: msg = "out of memory";