Skip to content

Commit cd7ae4e

Browse files
dlechpopcornmix
authored andcommitted
net: rtl8192cu: fix gcc misleading whitespace warning
This fixes a gcc warning about misleading whitespace. Signed-off-by: David Lechner <[email protected]>
1 parent 44316c6 commit cd7ae4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,10 +1502,10 @@ _func_enter_;
15021502

15031503
/* Insert MIC into payload */
15041504
for (j = 0; j < 8; j++)
1505-
pframe[payload_index+j] = mic[j]; //message[payload_index+j] = mic[j];
1505+
pframe[payload_index+j] = mic[j]; //message[payload_index+j] = mic[j];
15061506

1507-
payload_index = hdrlen + 8;
1508-
for (i=0; i< num_blocks; i++)
1507+
payload_index = hdrlen + 8;
1508+
for (i=0; i< num_blocks; i++)
15091509
{
15101510
construct_ctr_preload(
15111511
ctr_preload,
@@ -1876,10 +1876,10 @@ _func_enter_;
18761876

18771877
/* Insert MIC into payload */
18781878
for (j = 0; j < 8; j++)
1879-
message[payload_index+j] = mic[j];
1879+
message[payload_index+j] = mic[j];
18801880

1881-
payload_index = hdrlen + 8;
1882-
for (i=0; i< num_blocks; i++)
1881+
payload_index = hdrlen + 8;
1882+
for (i=0; i< num_blocks; i++)
18831883
{
18841884
construct_ctr_preload(
18851885
ctr_preload,

0 commit comments

Comments
 (0)