[asterisk-commits] eliel: branch group/data_api_gsoc2009 r201907 - /team/group/data_api_gsoc2009...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jun 19 11:09:16 CDT 2009
Author: eliel
Date: Fri Jun 19 11:09:13 2009
New Revision: 201907
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=201907
Log:
shorten union names.
Modified:
team/group/data_api_gsoc2009/main/data.c
Modified: team/group/data_api_gsoc2009/main/data.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/data_api_gsoc2009/main/data.c?view=diff&rev=201907&r1=201906&r2=201907
==============================================================================
--- team/group/data_api_gsoc2009/main/data.c (original)
+++ team/group/data_api_gsoc2009/main/data.c Fri Jun 19 11:09:13 2009
@@ -41,10 +41,10 @@
/*! \brief The node content. */
union {
- int integer;
- unsigned int unsigned_integer;
- double number;
- unsigned int boolean:1;
+ int sint;
+ unsigned int uint;
+ double dbl;
+ unsigned int bool:1;
char *str;
struct in_addr ipaddr;
void *ptr;
More information about the asterisk-commits
mailing list