sim spelling error

Message ID A058C09F-2357-483C-A67C-D882A49CA2D9@mrs.kithrup.com
State Committed
Delegated to: Mike Frysinger
Headers

Commit Message

Mike Stump June 8, 2015, 5:54 p.m. UTC
  Here is a simple spelling fix.

Could someone apply it for me?  Thanks.
diff --git a/sim/common/sim-events.c b/sim/common/sim-events.c
index 3e7a4dc..d7ca0df 100644
--- a/sim/common/sim-events.c
+++ b/sim/common/sim-events.c
@@ -561,7 +561,7 @@ sim_events_schedule_after_signal (SIM_DESC sd,
   if (events->nr_held > MAX_NR_SIGNAL_SIM_EVENTS)
     {
       sim_engine_abort (NULL, NULL, NULL_CIA,
-			"sim_events_schedule_after_signal - buffer oveflow");
+			"sim_events_schedule_after_signal - buffer overflow");
     }
 
   new_event->data = data;
  

Comments

Joel Brobecker June 9, 2015, 6:31 p.m. UTC | #1
> Here is a simple spelling fix.
> 
> Could someone apply it for me?  Thanks.

I just applied it with the following ChangeLog entry:

sim/common/ChangeLog:

        * sim-events.c (sim_events_schedule_after_signal): Fix spelling
        mistake in call to sim_engine_abort.

If you have other such patches you'd like us to apply, would you mind
creating a commit, and then git-email'ing it to us. Or at least
do a "git format-patch" and send that to this mailing-list?
It allows me to just go ahead and apply the commit locally, without
having to worry about setting the author, writing a ChangeLog entry,
etc.

Thanks,
  

Patch

diff --git a/sim/common/sim-events.c b/sim/common/sim-events.c
index 3e7a4dc..d7ca0df 100644
--- a/sim/common/sim-events.c
+++ b/sim/common/sim-events.c
@@ -561,7 +561,7 @@  sim_events_schedule_after_signal (SIM_DESC sd,
   if (events->nr_held > MAX_NR_SIGNAL_SIM_EVENTS)
     {
       sim_engine_abort (NULL, NULL, NULL_CIA,
-			"sim_events_schedule_after_signal - buffer oveflow");
+			"sim_events_schedule_after_signal - buffer overflow");
     }
 
   new_event->data = data;