diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-02 05:21:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-04-02 05:21:59 +0000 |
commit | ffbc20d91349a976b624529fba388026f6d5354a (patch) | |
tree | 4efa90778fb75b6bcfd2f7d725448d5105bc2c1a /sim | |
parent | 6934ecc09a7bd259c741a569a7ee0f41e0f3f5d1 (diff) | |
download | gdb-ffbc20d91349a976b624529fba388026f6d5354a.zip gdb-ffbc20d91349a976b624529fba388026f6d5354a.tar.gz gdb-ffbc20d91349a976b624529fba388026f6d5354a.tar.bz2 |
sim: fix spelling typo
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/hw-ports.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 8b906af..c4b95cf 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2012-04-02 Mike Frysinger <vapier@gentoo.org> + + * hw-ports.c (hw_port_decode): Change "Unreconized" to "Unrecognized". + 2012-03-28 Rathish C <rathish.c@kpitcummins.com> * sim-trace.c: Update the function prototype of save_data_size. diff --git a/sim/common/hw-ports.c b/sim/common/hw-ports.c index 1089969..ffc48ad 100644 --- a/sim/common/hw-ports.c +++ b/sim/common/hw-ports.c @@ -286,7 +286,7 @@ hw_port_decode (struct hw *me, } } } - hw_abort (me, "Unreconized port %s", port_name); + hw_abort (me, "Unrecognized port %s", port_name); return 0; } |