diff options
-rw-r--r-- | libguile/tags.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/tags.h b/libguile/tags.h index 79f709306..210a82b73 100644 --- a/libguile/tags.h +++ b/libguile/tags.h @@ -82,7 +82,7 @@ typedef scm_t_uintptr scm_t_bits; /* This is the default, which provides an intermediate level of compile time * type checking while still resulting in very efficient code. */ - typedef struct { char scm_unused_field; } * SCM; + typedef struct scm_unused_struct { char scm_unused_field; } *SCM; /* The 0?: constructions makes sure that the code is never executed, |