|
From: <kin...@us...> - 2025-09-30 16:36:41
|
Revision: 7542
http://sourceforge.net/p/teem/code/7542
Author: kindlmann
Date: 2025-09-30 16:36:38 +0000 (Tue, 30 Sep 2025)
Log Message:
-----------
fixing broken error message
Modified Paths:
--------------
teem/trunk/src/hest/methodsHest.c
Modified: teem/trunk/src/hest/methodsHest.c
===================================================================
--- teem/trunk/src/hest/methodsHest.c 2025-09-30 16:24:58 UTC (rev 7541)
+++ teem/trunk/src/hest/methodsHest.c 2025-09-30 16:36:38 UTC (rev 7542)
@@ -93,7 +93,8 @@
if (!(out && str && hpp)) return 1; \
int ret = (1 != airSingleSscanf(str, format, out)); \
if (ret) { \
- snprintf(hpp->err, AIR_STRLEN_HUGE + 1, "couldn't parse \"%s\" as", typstr); \
+ snprintf(hpp->err, AIR_STRLEN_HUGE + 1, "couldn't parse \"%s\" as %s", str, \
+ typstr); \
} else { \
hpp->err[0] = '\0'; \
} \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|