From patchwork Sat Dec 28 08:03:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: jon ernst X-Patchwork-Id: 305548 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 869E52C00C3 for ; Sat, 28 Dec 2013 19:03:44 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751352Ab3L1IDo (ORCPT ); Sat, 28 Dec 2013 03:03:44 -0500 Received: from mail-qe0-f43.google.com ([209.85.128.43]:44719 "EHLO mail-qe0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751170Ab3L1IDn (ORCPT ); Sat, 28 Dec 2013 03:03:43 -0500 Received: by mail-qe0-f43.google.com with SMTP id jy17so9725958qeb.16 for ; Sat, 28 Dec 2013 00:03:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=bfJrqBCztYU6OuQUNM3+CsVnUzJZBBlGU0KflmuZgNw=; b=xSn9uP3Ufyc/tZh5Lfd6TwLAm7+o0kx4BjZ+XxQncLFN9OaAalDxNAfaxd1GMH9KfS 5yvyLPWkmPTKKac1qjUxhsekiPhrKsYOWAFNGjY7TBgspZ5XvNzZXx3vxwR6dn2F1ZXe cY7tyn7xB1olIrznrZ/D2WEb9+BDsL0ebaeBw+56hbLl3pP52KxhwUwWcZV5Ll9Nd4Ws 8/Usi2J24LvjGIoAnSUxhu3oXkZH5PvJ1g1fQ1tFW3M/fmQgrg1/t+225pq8wRbrrUXc H9yzsFIev+qJV1EVhbYPWt5ycOsn9QLw51KJ3FWsh2sV0ezZxpdiC2Xf3UpMNPhlMyf6 VJ7w== X-Received: by 10.224.13.141 with SMTP id c13mr79885378qaa.76.1388217822652; Sat, 28 Dec 2013 00:03:42 -0800 (PST) Received: from [192.168.1.7] (pool-96-241-155-28.washdc.fios.verizon.net. [96.241.155.28]) by mx.google.com with ESMTPSA id n14sm55237597qav.8.2013.12.28.00.03.42 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 28 Dec 2013 00:03:42 -0800 (PST) Message-ID: <52BE85DD.7060902@gmail.com> Date: Sat, 28 Dec 2013 03:03:41 -0500 From: Jon Ernst User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: linux-ext4@vger.kernel.org Subject: [PATCH] libext2fs: delete unused "handle" variable Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org [PATCH] libext2fs: delete unused "handle" variable after commit 62f17f36031102a2a40fac338e063c556f73b94a, variable "handle" has no use. So delete it. Signed-off-by: Jon Enrst --- lib/ext2fs/symlink.c | 1 - 1 file changed, 1 deletion(-) ext2_ino_t scratch_ino; diff --git a/lib/ext2fs/symlink.c b/lib/ext2fs/symlink.c index ad80444..b2ef66c 100644 --- a/lib/ext2fs/symlink.c +++ b/lib/ext2fs/symlink.c @@ -31,7 +31,6 @@ errcode_t ext2fs_symlink(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t ino, const char *name, char *target) { - ext2_extent_handle_t handle; errcode_t retval; struct ext2_inode inode;