Skip to content

Commit

Permalink
[SQUASH ME] ng_sixlowpan_iphc: fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Apr 24, 2015
1 parent 5fec20c commit f46e863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/include/net/ng_sixlowpan/iphc.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ extern "C" {

static inline bool ng_sixlowpan_iphc_is(uint8_t *data)
{
return ((data & NG_SIXLOWPAN_IPHC1_DISP_MASK) == NG_SIXLOWPAN_IPHC1_DISP)
return ((*data & NG_SIXLOWPAN_IPHC1_DISP_MASK) == NG_SIXLOWPAN_IPHC1_DISP);
}

/**
Expand Down

0 comments on commit f46e863

Please sign in to comment.