summaryrefslogtreecommitdiff
path: root/emulators/simh/files/patch-H316_h316__sys.c
diff options
context:
space:
mode:
authorMatthew Seaman <matthew@FreeBSD.org>2017-01-03 14:00:47 +0000
committerMatthew Seaman <matthew@FreeBSD.org>2017-01-03 14:00:47 +0000
commit7c084f620e6dcec68140cd4df90f64870cae813b (patch)
tree0752b4ea3e6f7dda7f1a2ab4235d6bffb9455613 /emulators/simh/files/patch-H316_h316__sys.c
parentUpdate to 7.1.0. Changes include: (diff)
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)
Diffstat (limited to 'emulators/simh/files/patch-H316_h316__sys.c')
-rw-r--r--emulators/simh/files/patch-H316_h316__sys.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/emulators/simh/files/patch-H316_h316__sys.c b/emulators/simh/files/patch-H316_h316__sys.c
new file mode 100644
index 000000000000..862dd1c66e2e
--- /dev/null
+++ b/emulators/simh/files/patch-H316_h316__sys.c
@@ -0,0 +1,16 @@
+--- H316/h316_sys.c.orig 2016-12-01 22:43:42 UTC
++++ H316/h316_sys.c
+@@ -364,11 +364,11 @@ switch (j) {
+
+ case I_V_MRF: case I_V_MRX: /* mem ref */
+ cptr = get_glyph (cptr, gbuf, ','); /* get next field */
+- if (k = (strcmp (gbuf, "C") == 0)) { /* C specified? */
++ if ((k = (strcmp (gbuf, "C") == 0))) { /* C specified? */
+ val[0] = val[0] | SC;
+ cptr = get_glyph (cptr, gbuf, 0);
+ }
+- else if (k = (strcmp (gbuf, "Z") == 0)) { /* Z specified? */
++ else if ((k = (strcmp (gbuf, "Z") == 0))) { /* Z specified? */
+ cptr = get_glyph (cptr, gbuf, ',');
+ }
+ d = get_uint (gbuf, 8, X_AMASK, &r); /* construe as addr */