diff options
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/signals.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/common/signals.c b/gdb/common/signals.c index 321319a..3c7ffe4 100644 --- a/gdb/common/signals.c +++ b/gdb/common/signals.c @@ -48,7 +48,8 @@ struct gdbarch; # endif #endif -/* This table must match in order and size the signals in enum target_signal. */ +/* This table must match in order and size the signals in enum + target_signal. */ static const struct { const char *name; @@ -348,7 +349,8 @@ target_signal_from_host (int hostsig) return (enum target_signal) (hostsig - 64 + (int) TARGET_SIGNAL_REALTIME_64); else - error ("GDB bug: target.c (target_signal_from_host): unrecognized real-time signal"); + error ("GDB bug: target.c (target_signal_from_host): " + "unrecognized real-time signal"); } #endif |