diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-04-30 05:42:43 -0400 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-04-30 05:42:43 -0400 |
commit | b2f8627ab59daeb03f036dde6c66fb9da736950c (patch) | |
tree | 6f15aa001533885968d0336ae8c4701018222c38 /src | |
parent | c0f96e9c6eda77e5e99de862dd4366010e4a1ab8 (diff) | |
download | libguestfs-b2f8627ab59daeb03f036dde6c66fb9da736950c.tar.gz libguestfs-b2f8627ab59daeb03f036dde6c66fb9da736950c.tar.xz libguestfs-b2f8627ab59daeb03f036dde6c66fb9da736950c.zip |
guestfs_close: Remove unused local variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/guestfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/guestfs.c b/src/guestfs.c index 206841e6..7868e8f0 100644 --- a/src/guestfs.c +++ b/src/guestfs.c @@ -1,5 +1,5 @@ /* libguestfs - * Copyright (C) 2009-2010 Red Hat Inc. + * Copyright (C) 2009-2011 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -170,7 +170,6 @@ void guestfs_close (guestfs_h *g) { int i; - char filename[256]; guestfs_h *gg; if (g->state == NO_HANDLE) { |