mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-21 20:12:51 -08:00
printer: fix wrong string printed in write_condition_variable
it printed #<semaphore> while it should be #<condition-variable>.
This commit is contained in:
parent
1553f4e70e
commit
2575218ccb
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ write_rwlock(cl_object x, cl_object stream)
|
|||
static void
|
||||
write_condition_variable(cl_object x, cl_object stream)
|
||||
{
|
||||
_ecl_write_unreadable(x, "semaphore", ECL_NIL, stream);
|
||||
_ecl_write_unreadable(x, "condition-variable", ECL_NIL, stream);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue