omx: Add parenthesis at correct places in the struct init macro
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 8 Aug 2011 11:04:30 +0000 (13:04 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 8 Aug 2011 11:04:30 +0000 (13:04 +0200)
omx/gstomx.h

index 337acf5..ebdd4e8 100644 (file)
@@ -29,8 +29,8 @@
 G_BEGIN_DECLS
 
 #define GST_OMX_INIT_STRUCT(st) G_STMT_START { \
-  memset ((st), 0, sizeof ((*st))); \
-  (st)->nSize = sizeof ((*st)); \
+  memset ((st), 0, sizeof (*(st))); \
+  (st)->nSize = sizeof (*(st)); \
   (st)->nVersion.s.nVersionMajor = 1; \
   (st)->nVersion.s.nVersionMinor = 1; \
 } G_STMT_END