mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
- 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)
20 lines
1 KiB
C
20 lines
1 KiB
C
--- SDS/sds_dsk.c.orig 2016-12-01 22:43:43 UTC
|
|
+++ SDS/sds_dsk.c
|
|
@@ -204,7 +204,7 @@ switch (fnc) {
|
|
case IO_READ:
|
|
xfr_req = xfr_req & ~XFR_DSK; /* clr xfr req */
|
|
if (dsk_bptr >= dsk_blnt) { /* no more data? */
|
|
- if (r = dsk_read_buf (inst)) /* read sector */
|
|
+ if ((r = dsk_read_buf (inst))) /* read sector */
|
|
return r;
|
|
}
|
|
dsk_wptr = dsk_bptr >> 2; /* word pointer */
|
|
@@ -219,7 +219,7 @@ switch (fnc) {
|
|
case IO_WRITE:
|
|
xfr_req = xfr_req & ~XFR_DSK; /* clr xfr req */
|
|
if (dsk_bptr >= (DSK_NUMWD * 4)) { /* full? */
|
|
- if (r = dsk_write_buf (inst)) /* write sector */
|
|
+ if ((r = dsk_write_buf (inst))) /* write sector */
|
|
return r;
|
|
}
|
|
dsk_wptr = dsk_bptr >> 2; /* word pointer */
|