Quiet ARI gettext checks

The ARI complains about this new file:

 common/signals-state-save-restore.c:46: warning: gettext: All messages should be marked up with _.
 common/signals-state-save-restore.c:59: warning: gettext: All messages should be marked up with _.
 common/signals-state-save-restore.c:87: warning: gettext: All messages should be marked up with _.
 common/signals-state-save-restore.c:92: warning: gettext: All messages should be marked up with _.

Since these are untranslatable strings, use () instead of _().

gdb/ChangeLog:
2016-08-10  Pedro Alves  <palves@redhat.com>

	* common/signals-state-save-restore.c
	(save_original_signals_state, restore_original_signals_state):
	Wrap perror_with_name arguments with '()'.
This commit is contained in:
Pedro Alves 2016-08-10 16:06:57 +01:00
parent 51132311db
commit 669f9429c7
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2016-08-10 Pedro Alves <palves@redhat.com>
* common/signals-state-save-restore.c
(save_original_signals_state, restore_original_signals_state):
Wrap perror_with_name arguments with '()'.
2016-08-09 Pedro Alves <palves@redhat.com>
PR gdb/20418

View File

@ -43,7 +43,7 @@ save_original_signals_state (void)
res = sigprocmask (0, NULL, &original_signal_mask);
if (res == -1)
perror_with_name ("sigprocmask");
perror_with_name (("sigprocmask"));
for (i = 1; i < NSIG; i++)
{
@ -56,7 +56,7 @@ save_original_signals_state (void)
continue;
}
else if (res == -1)
perror_with_name ("sigaction");
perror_with_name (("sigaction"));
/* If we find a custom signal handler already installed, then
this function was called too late. */
@ -84,11 +84,11 @@ restore_original_signals_state (void)
continue;
}
else if (res == -1)
perror_with_name ("sigaction");
perror_with_name (("sigaction"));
}
res = sigprocmask (SIG_SETMASK, &original_signal_mask, NULL);
if (res == -1)
perror_with_name ("sigprocmask");
perror_with_name (("sigprocmask"));
#endif
}