mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
See https://core.tcl-lang.org/expect/info/094d670f6250f34c. Signed-off-by: Sam James <sam@gentoo.org>
21 lines
484 B
Diff
21 lines
484 B
Diff
https://core.tcl-lang.org/expect/info/094d670f6250f34c
|
|
|
|
exp_clib.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/exp_clib.c b/exp_clib.c
|
|
index 172c05e..c86dda4 100644
|
|
--- a/exp_clib.c
|
|
+++ b/exp_clib.c
|
|
@@ -1476,8 +1476,8 @@ expDiagLogU(str)
|
|
char *str;
|
|
{
|
|
if (exp_is_debugging) {
|
|
- fprintf(stderr,str);
|
|
- if (exp_logfile) fprintf(exp_logfile,str);
|
|
+ fprintf(stderr,"%s", str);
|
|
+ if (exp_logfile) fprintf(exp_logfile,"%s", str);
|
|
}
|
|
}
|
|
|