diff options
Diffstat (limited to 'audio/csound/patches/patch-ap')
-rw-r--r-- | audio/csound/patches/patch-ap | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/csound/patches/patch-ap b/audio/csound/patches/patch-ap new file mode 100644 index 00000000000..94234b8f560 --- /dev/null +++ b/audio/csound/patches/patch-ap @@ -0,0 +1,13 @@ +$NetBSD: patch-ap,v 1.1 2002/01/21 11:30:04 wiz Exp $ + +--- sread.c.orig Thu Apr 5 18:58:53 2001 ++++ sread.c +@@ -1055,7 +1055,7 @@ + * On Alpha we need to round up to 8 bytes (64 bits). + * heh 981101 + */ +- bp = (SRTBLK *) ((((LONG) nxp) + 7) & ~0x7); ++ bp = (SRTBLK *) ((((long) nxp) + 7) & ~0x7); + #else + bp = (SRTBLK *) ((((long) nxp) + 3) & -4); + #endif |