diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-01-16 22:16:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-01-16 22:16:34 +0100 |
commit | bbd210517f12fdabb51e0dc2527ba186bb1ba549 (patch) | |
tree | 02bc9513200fba0f8bc76e8346863bccf879766f | |
parent | d143fac660911ffdb6d792007d85523a668dbc9b (diff) | |
download | guile-bbd210517f12fdabb51e0dc2527ba186bb1ba549.tar.gz |
Fix typo in threads.c on IA64.
* libguile/threads.c (guilify_self_1)[__ia64__]: Fix typo. Reported by
Bruno Haible <bruno@clisp.org>.
-rw-r--r-- | libguile/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/threads.c b/libguile/threads.c index 392f9fe58..5a13e5ccf 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -551,7 +551,7 @@ guilify_self_1 (struct GC_stack_base *base) t.critical_section_level = 0; t.base = base->mem_base; #ifdef __ia64__ - t.register_backing_store_base = base->reg-base; + t.register_backing_store_base = base->reg_base; #endif t.continuation_root = SCM_EOL; t.continuation_base = t.base; |