Fix mistaken use of && where & was intended
authorThiago Macieira <thiago.macieira@intel.com>
Fri, 5 Sep 2014 01:20:13 +0000 (18:20 -0700)
committerErich Keane <erich.keane@intel.com>
Thu, 11 Sep 2014 17:59:52 +0000 (10:59 -0700)
commit3f69ab476c64debd23d74427acd4827a46d49c14
tree56b72aa3c59c606ee23571677cbb2f53c0926464
parent47306784d04a2d90bf02e121f5166d2f7c6b8740
Fix mistaken use of && where & was intended

Found by Clang:
occoaphelper.c:93:59: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]

It's clearly meant to be a &, as seen by the right shift by 5 and the
constant of 31 (5 bits)

Change-Id: Ie35ad6c313ad53d766fc6fe88ffd03b462d49519
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
csdk/occoap/src/occoaphelper.c