summaryrefslogtreecommitdiff
path: root/emulators/simh/files/patch-VAX_vax780__sbi.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-VAX_vax780__sbi.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-VAX_vax780__sbi.c')
-rw-r--r--emulators/simh/files/patch-VAX_vax780__sbi.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/emulators/simh/files/patch-VAX_vax780__sbi.c b/emulators/simh/files/patch-VAX_vax780__sbi.c
new file mode 100644
index 000000000000..24b8260c5a3d
--- /dev/null
+++ b/emulators/simh/files/patch-VAX_vax780__sbi.c
@@ -0,0 +1,30 @@
+--- VAX/vax780_sbi.c.orig 2016-12-01 22:43:43 UTC
++++ VAX/vax780_sbi.c
+@@ -638,7 +638,7 @@ DIB *dibp;
+ t_stat r;
+
+ regptr = get_glyph (ptr, gbuf, 0); /* get glyph */
+-if (slptr = strchr (gbuf, '/')) { /* found slash? */
++if ((slptr = strchr (gbuf, '/'))) { /* found slash? */
+ regptr = strchr (ptr, '/'); /* locate orig */
+ *slptr = 0; /* zero in string */
+ }
+@@ -784,15 +784,15 @@ for (i = 0; (dptr = sim_devices[i]) != N
+ dibp = (DIB *) dptr->ctxt; /* get DIB */
+ if (dibp && !(dptr->flags & DEV_DIS)) { /* defined, enabled? */
+ if (dptr->flags & DEV_NEXUS) { /* Nexus? */
+- if (r = build_nexus_tab (dptr, dibp)) /* add to dispatch table */
++ if ((r = build_nexus_tab (dptr, dibp))) /* add to dispatch table */
+ return r;
+ }
+ else if (dptr->flags & DEV_MBUS) { /* Massbus? */
+- if (r = build_mbus_tab (dptr, dibp))
++ if ((r = build_mbus_tab (dptr, dibp)))
+ return r;
+ }
+ else { /* no, Unibus device */
+- if (r = build_ubus_tab (dptr, dibp)) /* add to dispatch tab */
++ if ((r = build_ubus_tab (dptr, dibp))) /* add to dispatch tab */
+ return r;
+ } /* end else */
+ } /* end if enabled */