aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-19 23:03:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-19 23:03:37 +0000
commit7bdba4b8b1cce9e19c2a79c16970264995afca78 (patch)
tree8e7552da984bf6ecc2226562018c43c31e3402ca /include
parent6c739092703552f7ef15e5db5a646eb9b5cc5b18 (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: http://svn.digium.com/svn/asterisk/trunk@89440 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-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 *);