mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
7c084f620e
- fix build failures in i386 and amd64 due to compiler changes - fix numerous compilation warnings and logical errors that may trap in the future - convert all distribution files from DOS format to ease future changes - convert legacy patch file to new naming convention PR: 214990 Submitted by: bob@eager.cx (maintainer)
12 lines
567 B
C
12 lines
567 B
C
--- I1620/i1620_tty.c.orig 2016-12-01 22:43:42 UTC
|
|
+++ I1620/i1620_tty.c
|
|
@@ -260,7 +260,7 @@ do {
|
|
*c = 0x7F;
|
|
else if ((raw == '~') || (raw == '`')) /* flag? mark */
|
|
flg = FLAG;
|
|
- else if (cp = strchr (tti_to_num, raw)) /* legal? */
|
|
+ else if ((cp = strchr (tti_to_num, raw))) /* legal? */
|
|
*c = ((int8) (cp - tti_to_num)) | flg; /* assemble char */
|
|
else raw = 007; /* beep! */
|
|
tto_write (raw); /* echo */
|