summaryrefslogtreecommitdiff
path: root/src/context/context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.cpp')
-rw-r--r--src/context/context.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/context/context.cpp b/src/context/context.cpp
index 078b6a6ef..b83260835 100644
--- a/src/context/context.cpp
+++ b/src/context/context.cpp
@@ -129,9 +129,9 @@ void ContextObj::update() {
// Check that base class data was saved
Assert(pContextObjSaved->d_pContextObjNext == d_pContextObjNext &&
- pContextObjSaved.d_ppContextObjPrev == d_ppContextObjPrev &&
- pContextObjSaved.d_pContextObjRestore == d_pContextObjRestore &&
- pContextObjSaved.d_pScope == d_pScope,
+ pContextObjSaved->d_ppContextObjPrev == d_ppContextObjPrev &&
+ pContextObjSaved->d_pContextObjRestore == d_pContextObjRestore &&
+ pContextObjSaved->d_pScope == d_pScope,
"save() did not properly copy information in base class");
// Update Scope pointer to current top Scope
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback