diff options
author | Richard Jones <rjones@redhat.com> | 2010-11-09 15:10:32 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-11-10 10:34:48 +0000 |
commit | 8ac9575b204a8ac85f9030500cb6eabbf6aa3226 (patch) | |
tree | 5678359ba231942d3d5819df1629957c5cba69d0 /src | |
parent | b52183b5491748d9e979d30e55db6d648b102416 (diff) | |
download | libguestfs-8ac9575b204a8ac85f9030500cb6eabbf6aa3226.tar.gz libguestfs-8ac9575b204a8ac85f9030500cb6eabbf6aa3226.tar.xz libguestfs-8ac9575b204a8ac85f9030500cb6eabbf6aa3226.zip |
inspect: win64 regexp was dead code.
Diffstat (limited to 'src')
-rw-r--r-- | src/inspect.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/inspect.c b/src/inspect.c index 52b0b8c8..531e3f76 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -45,7 +45,6 @@ * simultaneously. */ static pcre *re_file_elf; -static pcre *re_file_win64; static pcre *re_elf_ppc64; static pcre *re_fedora; static pcre *re_rhel_old; @@ -94,7 +93,6 @@ static void free_regexps (void) { pcre_free (re_file_elf); - pcre_free (re_file_win64); pcre_free (re_elf_ppc64); pcre_free (re_fedora); pcre_free (re_rhel_old); |