[svn-commits] russell: trunk r89440 - /trunk/include/asterisk/module.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Nov 19 17:03:38 CST 2007


Author: russell
Date: Mon Nov 19 17:03:37 2007
New Revision: 89440

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89440
Log:
Be a bit more pedantic about the type for holding the md5 sum for the build options.
Also, doxygenify the comment.

Modified:
    trunk/include/asterisk/module.h

Modified: trunk/include/asterisk/module.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/module.h?view=diff&rev=89440&r1=89439&r2=89440
==============================================================================
--- trunk/include/asterisk/module.h (original)
+++ trunk/include/asterisk/module.h Mon Nov 19 17:03:37 2007
@@ -216,7 +216,8 @@
 
 	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 *);




More information about the svn-commits mailing list