about summary refs log tree commit diff
path: root/src/rt/rust_gc.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-08-19 18:42:33 -0700
committerBrian Anderson <banderson@mozilla.com>2011-08-19 18:42:33 -0700
commite417e78e2b9757931613d0587e5ca1b7fb9085f1 (patch)
tree5de947352b79a35c9e71ad793253332860e38a76 /src/rt/rust_gc.cpp
parentd8d9f2adf27ffa57fcd84958d6a823d0d6b90b77 (diff)
downloadrust-e417e78e2b9757931613d0587e5ca1b7fb9085f1.tar.gz
rust-e417e78e2b9757931613d0587e5ca1b7fb9085f1.zip
Add missing struct keyword to rust_gc
Diffstat (limited to 'src/rt/rust_gc.cpp')
-rw-r--r--src/rt/rust_gc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_gc.cpp b/src/rt/rust_gc.cpp
index 01ab282cc39..e10d2055884 100644
--- a/src/rt/rust_gc.cpp
+++ b/src/rt/rust_gc.cpp
@@ -57,7 +57,7 @@ struct safe_point {
 
 struct safe_point_index_entry {
     void (*ra)();                   // The return address.
-    const safe_point *safe_point;   // The safe point.
+    const struct safe_point *safe_point;   // The safe point.
 
     struct cmp {
         bool operator()(const safe_point_index_entry &entry, void (*ra)())