Commit e4611fb1 authored by Linus Torvalds's avatar Linus Torvalds

cifs: fix missing semicolon.

It disappeared somewhere in Al's cleanup patch..
parent 97bf7b1a
......@@ -828,7 +828,7 @@ CIFSSMBLock(const int xid, struct cifsTconInfo *tcon,
/* BB where to store pid high? */
pSMB->Locks[0].LengthLow = cpu_to_le32((u32)len);
pSMB->Locks[0].LengthHigh = cpu_to_le32((u32)(len>>32));
pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset)
pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset);
pSMB->Locks[0].OffsetHigh = cpu_to_le32((u32)(offset>>32));
count = sizeof(LOCKING_ANDX_RANGE);
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment