summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-09-18 20:01:08 -0400
committerAdam <Adam@anope.org>2013-09-18 20:01:08 -0400
commit7a741b467c1e178ba721550ec62fecd2d4afbf90 (patch)
treeceffa5973e2669d1556ce4b02b62b642fcbd7f70 /include
parentd24ae1f961a70e8f3edff8816eaaff7cf5705e5b (diff)
Add padding to struct memo for non mysql builds to keep abi compat with mysql builds
Diffstat (limited to 'include')
-rw-r--r--include/services.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/services.h b/include/services.h
index c7e03fe57..7c770aa95 100644
--- a/include/services.h
+++ b/include/services.h
@@ -496,6 +496,8 @@ struct memo_ {
ModuleData *moduleData; /* Module saved data attached to the Memo */
#ifdef USE_MYSQL
uint32 id; /* Database ID; see mysql.c */
+#else
+ uint32 notused; /* ABI compat with no mysql */
#endif
};