Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang

svn path=/trunk/; revision=40994
This commit is contained in:
Alexis La Goutte 2012-02-12 18:05:02 +00:00
parent 958afd725d
commit dfb7f8dd19
1 changed files with 1 additions and 1 deletions

View File

@ -2013,7 +2013,7 @@ ccm_init_block(gchar *block, gboolean adata, gint M, guint64 addr, ieee802154_pa
block[i++] = packet->security_level;
/* Plaintext length. */
block[i++] = (guint8)((ctr_val >> 8) & 0xff);
block[i++] = (guint8)((ctr_val >> 0) & 0xff);
block[i] = (guint8)((ctr_val >> 0) & 0xff);
} /* ccm_init_block */
/*FUNCTION:------------------------------------------------------