summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-11-19 23:03:37 +0000
committerRussell Bryant <russell@russellbryant.com>2007-11-19 23:03:37 +0000
commit3cda8388b93fdf0f7f34990a58fb803a7dba35b3 (patch)
tree8e7552da984bf6ecc2226562018c43c31e3402ca /include/asterisk/module.h
parent501915f0a9312e7dcbb00f3bce28705e4b6030be (diff)
Be a bit more pedantic about the type for holding the md5 sum for the build options.
Also, doxygenify the comment. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89440 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/module.h')
-rw-r--r--include/asterisk/module.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 119ae88f0..98a2b8fb9 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -216,7 +216,8 @@ struct ast_module_info {
const char *key;
unsigned int flags;
- unsigned int buildopt_sum[4]; /* The value of AST_BUILDOPT_SUM when this module was compiled */
+ /*! The value of AST_BUILDOPT_SUM when this module was compiled */
+ uint32_t buildopt_sum[4];
};
void ast_module_register(const struct ast_module_info *);