aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-18 22:02:04 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-18 22:02:04 +0000
commit176575e280779acceb70eca4b1c61839f06380bf (patch)
tree1a49b97d23c4f7231b5a2141c3df0f463118caac /include/asterisk/frame.h
parentd8e2b105047b369f7e4f681da52033da4467a1b2 (diff)
u_intXX_t is silly
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43236 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/frame.h')
-rw-r--r--include/asterisk/frame.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index dc8884cfa..0160e3b95 100644
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -333,17 +333,17 @@ struct oprmode {
struct ast_option_header {
/* Always keep in network byte order */
#if __BYTE_ORDER == __BIG_ENDIAN
- u_int16_t flag:3;
- u_int16_t option:13;
+ uint16_t flag:3;
+ uint16_t option:13;
#else
#if __BYTE_ORDER == __LITTLE_ENDIAN
- u_int16_t option:13;
- u_int16_t flag:3;
+ uint16_t option:13;
+ uint16_t flag:3;
#else
#error Byte order not defined
#endif
#endif
- u_int8_t data[0];
+ uint8_t data[0];
};
/*! \brief Requests a frame to be allocated