From ffac87a92bde300244523d94c29a9b05e6d1cc7d Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Thu, 5 Sep 2013 17:13:58 -0500 Subject: [PATCH] rtl8188eu: Fix code error in include/rtw_xmit.h Signed-off-by: Larry Finger --- include/rtw_xmit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rtw_xmit.h b/include/rtw_xmit.h index be736e7..3ea80c2 100644 --- a/include/rtw_xmit.h +++ b/include/rtw_xmit.h @@ -56,7 +56,7 @@ do {\ pattrib_iv[1] = dot11txpn._byte_.TSC1;\ pattrib_iv[2] = dot11txpn._byte_.TSC2;\ pattrib_iv[3] = ((keyidx & 0x3)<<6);\ - dot11txpn.val = (dot11txpn.val == 0xffffff) ? 0i : (dot11txpn.val+1);\ + dot11txpn.val = (dot11txpn.val == 0xffffff) ? 0 : (dot11txpn.val+1);\ } while (0)