diff options
author | Steve French <sfrench@us.ibm.com> | 2005-10-03 19:33:15 -0700 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-10-03 19:33:15 -0700 |
commit | 04c08816d693f010ce14b8f408c6228600053af0 (patch) | |
tree | 4382f43b09bd3660e2d7ead5fb27fa3f2d195995 /fs/cifs/transport.c | |
parent | 8cc64c6ecfef020d40829f3e1152aab006c13899 (diff) | |
download | linux-3.10-04c08816d693f010ce14b8f408c6228600053af0.tar.gz linux-3.10-04c08816d693f010ce14b8f408c6228600053af0.tar.bz2 linux-3.10-04c08816d693f010ce14b8f408c6228600053af0.zip |
[CIFS] Missing parenthesis from error message in previous fix
Signed-off-by: Steve French (sfrench@us.ibm.com)
Diffstat (limited to 'fs/cifs/transport.c')
-rw-r--r-- | fs/cifs/transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index 38b3b2463ae..64c712629f2 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -244,7 +244,7 @@ smb_send2(struct socket *ssocket, struct kvec *iov, int n_vec, if(rc == 0) { /* should never happen, letting socket clear before retrying is our only obvious option here */ - cERROR(1,("tcp sent no data"); + cERROR(1,("tcp sent no data")); msleep(500); continue; } |