1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-21 20:20:24 +02:00

Fix typo in threads.c on IA64.

* libguile/threads.c (guilify_self_1)[__ia64__]: Fix typo.  Reported by
  Bruno Haible <bruno@clisp.org>.
This commit is contained in:
Ludovic Courtès 2012-01-16 22:16:34 +01:00
parent d143fac660
commit bbd210517f

View file

@ -551,7 +551,7 @@ guilify_self_1 (struct GC_stack_base *base)
t.critical_section_level = 0; t.critical_section_level = 0;
t.base = base->mem_base; t.base = base->mem_base;
#ifdef __ia64__ #ifdef __ia64__
t.register_backing_store_base = base->reg-base; t.register_backing_store_base = base->reg_base;
#endif #endif
t.continuation_root = SCM_EOL; t.continuation_root = SCM_EOL;
t.continuation_base = t.base; t.continuation_base = t.base;