summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/list.h
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2013-10-21 06:37:30 +0000
committerLiong Sauw Ming <ming@teluu.com>2013-10-21 06:37:30 +0000
commit1b2ad20c6811a916650a0c510724d9f1b8a7d6d1 (patch)
treeb955787f6c1e48e03bc7d9a2f6a9b816942fc700 /pjlib/include/pj/list.h
parent674d145645a4f8a8392ec8d76b34256000ebd39c (diff)
Re #1630 (misc):
Fixed compiler warnings. Thanks to Mark Michelson for the patch. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4624 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/list.h')
-rw-r--r--pjlib/include/pj/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/include/pj/list.h b/pjlib/include/pj/list.h
index 0cc4b997..a66b821e 100644
--- a/pjlib/include/pj/list.h
+++ b/pjlib/include/pj/list.h
@@ -74,7 +74,7 @@ PJ_BEGIN_DECL
struct pj_list
{
PJ_DECL_LIST_MEMBER(void);
-};
+} PJ_ATTR_MAY_ALIAS; /* may_alias avoids warning with gcc-4.4 -Wall -O2 */
/**