- (stevesk) sftp-server.c: KNF
diff --git a/sftp-server.c b/sftp-server.c
index 92f1588..18ee735 100644
--- a/sftp-server.c
+++ b/sftp-server.c
@@ -669,14 +669,14 @@
 	int handle, fd, ret;
 	int status = SSH2_FX_OK;
 	char *name;
-	
+
 	id = get_int();
 	handle = get_handle();
 	a = get_attrib();
 	TRACE("fsetstat id %d handle %d", id, handle);
 	fd = handle_to_fd(handle);
 	name = handle_to_name(handle);
-	if ((fd < 0) || (name == NULL)) {
+	if (fd < 0 || name == NULL) {
 		status = SSH2_FX_FAILURE;
 	} else {
 		if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {