aboutsummaryrefslogtreecommitdiff
path: root/tests/sauer/command.h
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-08 22:55:23 -0700
committeralon@honor <none@none>2010-09-08 22:55:23 -0700
commit7a6e1527b65e32ab8cbe4760932eb40ad3eb2b3b (patch)
treefce711d08f1e0aa50ea0228e5b432c7a148fa4b7 /tests/sauer/command.h
parente5fb81cd5e6c88adbcd96df2dc103ae618dbb990 (diff)
sauer test fixes
Diffstat (limited to 'tests/sauer/command.h')
-rw-r--r--tests/sauer/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sauer/command.h b/tests/sauer/command.h
index 61f98392..86b10885 100644
--- a/tests/sauer/command.h
+++ b/tests/sauer/command.h
@@ -84,7 +84,7 @@ struct ident
virtual ~ident() {}
- ident &operator=(const ident &o) { memcpy(this, &o, sizeof(ident)); return *this; } // force vtable copy, ugh
+ ident &operator=(const ident &o) { memcpy(this, &o, ES_SIZEOF(ident)); return *this; } // force vtable copy, ugh
virtual void changed() { if(fun) fun(); }
};