summaryrefslogtreecommitdiff
path: root/src/gc/gcrecord.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gc/gcrecord.h')
-rw-r--r--src/gc/gcrecord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gc/gcrecord.h b/src/gc/gcrecord.h
index 30966953e2..c00f8b0826 100644
--- a/src/gc/gcrecord.h
+++ b/src/gc/gcrecord.h
@@ -409,16 +409,16 @@ struct gc_history_global
gc_reason reason;
int pause_mode;
uint32_t mem_pressure;
- uint32_t global_mechanims_p;
+ uint32_t global_mechanisms_p;
void set_mechanism_p (gc_global_mechanism_p mechanism)
{
- global_mechanims_p |= (1 << mechanism);
+ global_mechanisms_p |= (1 << mechanism);
}
BOOL get_mechanism_p (gc_global_mechanism_p mechanism)
{
- return (global_mechanims_p & (1 << mechanism));
+ return (global_mechanisms_p & (1 << mechanism));
}
void print();