1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/emulators/simh/files/patch-I1620_i1620__sys.c
Matthew Seaman 7c084f620e Fixes to allow building on 12-CURRENT
- 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)
2017-01-03 14:00:47 +00:00

12 lines
612 B
C

--- I1620/i1620_sys.c.orig 2016-12-01 22:43:42 UTC
+++ I1620/i1620_sys.c
@@ -552,7 +552,7 @@ if (I_GETQP (opfl) != I_M_QNP) {
cptr = get_glyph (cptr, fptr = gbuf, ' '); /* get flag field */
last = -1; /* none yet */
-while (t = *fptr++) { /* loop through */
+while ((t = *fptr++)) { /* loop through */
if ((t < '0') || (t > '9')) /* must be digit */
return SCPE_ARG;
t = t - '0'; /* convert */