diff options
author | 2014-11-20 10:37:21 +0000 | |
---|---|---|
committer | 2014-11-20 10:37:21 +0000 | |
commit | f1036aa8774f9c1ac4355ed1cc9334eb3c945f3f (patch) | |
tree | 8b9f4b89a03db4fa30934c987a4ba17aad2874bf | |
parent | Force a status check of all the ports of a newly attached hub. In the (diff) | |
download | wireguard-openbsd-f1036aa8774f9c1ac4355ed1cc9334eb3c945f3f.tar.xz wireguard-openbsd-f1036aa8774f9c1ac4355ed1cc9334eb3c945f3f.zip |
Fix previous.
Build failure reported by Sebastien Marie
testing & ok phessler@
-rw-r--r-- | sys/dev/rasops/rasops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/rasops/rasops.c b/sys/dev/rasops/rasops.c index 4ddc8f5490f..89630578739 100644 --- a/sys/dev/rasops/rasops.c +++ b/sys/dev/rasops/rasops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.c,v 1.33 2014/11/20 08:15:07 deraadt Exp $ */ +/* $OpenBSD: rasops.c,v 1.34 2014/11/20 10:37:21 landry Exp $ */ /* $NetBSD: rasops.c,v 1.35 2001/02/02 06:01:01 marcus Exp $ */ /*- @@ -142,7 +142,9 @@ int rasops_alloc_mattr(void *, int, int, int, long *); int rasops_do_cursor(struct rasops_info *); void rasops_init_devcmap(struct rasops_info *); void rasops_unpack_attr(void *, long, int *, int *, int *); +#if NRASOPS_BSWAP > 0 static void slow_bcopy(void *, void *, size_t); +#endif #if NRASOPS_ROTATION > 0 void rasops_copychar(void *, int, int, int, int); int rasops_copycols_rotated(void *, int, int, int, int); |