aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbarch.c
diff options
context:
space:
mode:
authorJohn R. Moore <jmoore@redhat.com>2001-02-02 20:01:16 +0000
committerJohn R. Moore <jmoore@redhat.com>2001-02-02 20:01:16 +0000
commit338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978 (patch)
tree312aaa3e2890cc0489ba149a944435086943ad5d /gdb/gdbarch.c
parent2b5436af18f524fe06dc946353b455c2e7179669 (diff)
downloadgdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.zip
gdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.tar.gz
gdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.tar.bz2
Changed free() to xfree() where appropriate. Also changed Copyright to
include 2001.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r--gdb/gdbarch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c
index 4c5c44d..f08cfb5 100644
--- a/gdb/gdbarch.c
+++ b/gdb/gdbarch.c
@@ -1,7 +1,7 @@
/* *INDENT-OFF* */ /* THIS FILE IS GENERATED */
/* Dynamic architecture support for GDB, the GNU debugger.
- Copyright 1998-1999, Free Software Foundation, Inc.
+ Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -467,7 +467,7 @@ void
gdbarch_free (struct gdbarch *arch)
{
/* At the moment, this is trivial. */
- free (arch);
+ xfree (arch);
}