aboutsummaryrefslogtreecommitdiff
path: root/gdb/p-lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/p-lang.c')
-rw-r--r--gdb/p-lang.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/p-lang.c b/gdb/p-lang.c
index 415cd99..44aefa4 100644
--- a/gdb/p-lang.c
+++ b/gdb/p-lang.c
@@ -158,9 +158,7 @@ static void
pascal_one_char (int c, struct ui_file *stream, int *in_quotes)
{
- c &= 0xFF; /* Avoid sign bit follies */
-
- if ((c == '\'') || (PRINT_LITERAL_FORM (c)))
+ if (c == '\'' || ((unsigned int) c <= 0xff && (PRINT_LITERAL_FORM (c))))
{
if (!(*in_quotes))
fputs_filtered ("'", stream);