~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/amigaos/signals.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: james.westby@ubuntu.com-20090331003715-mzclchtl0dp7fcl0
Tags: upstream-2.1.dfsg
ImportĀ upstreamĀ versionĀ 2.1.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
static RETSIGTYPE break64(int sig)
39
39
{
40
40
#ifdef SYS_SIGLIST_DECLARED
41
 
    log_message(LOG_DEFAULT, _("Received signal %d (%s)."),
 
41
    log_message(LOG_DEFAULT, "Received signal %d (%s).",
42
42
                sig, sys_siglist[sig]);
43
43
#else
44
 
    log_message(LOG_DEFAULT, _("Received signal %d."), sig);
 
44
    log_message(LOG_DEFAULT, "Received signal %d.", sig);
45
45
#endif
46
46
 
47
47
    exit (-1);