[CIFS] Fix minor problem with previous patch

The patch
NFS stress test generates flood of "close with pending write

was missing an if

Signed-off-by: Steve French <sfrench@us.ibm.com>

+2 -1
+2 -1
fs/cifs/file.c
··· 498 498 msleep(timeout); 499 499 timeout *= 4; 500 500 } 501 - cERROR(1,("close with pending writes")); 501 + if(atomic_read(&pSMBFile->wrtPending)) 502 + cERROR(1,("close with pending writes")); 502 503 rc = CIFSSMBClose(xid, pTcon, 503 504 pSMBFile->netfid); 504 505 }