Author: ambrisko
Date: Fri Nov 14 23:32:31 2008
New Revision: 184975
URL: http://svn.freebsd.org/changeset/base/184975

Log:
  Fix compile.  I was in the wrong tree when I tested it :-(
  
  Pointed out by:       Andrzej

Modified:
  head/sys/dev/mfi/mfi.c

Modified: head/sys/dev/mfi/mfi.c
==============================================================================
--- head/sys/dev/mfi/mfi.c      Fri Nov 14 21:05:45 2008        (r184974)
+++ head/sys/dev/mfi/mfi.c      Fri Nov 14 23:32:31 2008        (r184975)
@@ -2135,7 +2135,7 @@ mfi_ioctl(struct cdev *dev, u_long cmd, 
                                /*
                                 * not 64bit native so zero out any address
                                 * over 32bit */
-                               sense_ptr.high = 0;
+                               sense_ptr.addr.high = 0;
                        }
 #endif
                        error = copyout(cm->cm_sense, sense_ptr.user_space,
@@ -2366,7 +2366,7 @@ mfi_linux_ioctl_int(struct cdev *dev, u_
                         * only 32bit Linux support so zero out any
                         * address over 32bit
                         */
-                       sense_ptr.high = 0;
+                       sense_ptr.addr.high = 0;
 #endif
                        error = copyout(cm->cm_sense, sense_ptr.user_space,
                            l_ioc.lioc_sense_len);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to