diff options
author | John Baldwin <jhb@FreeBSD.org> | 2014-03-10 16:07:45 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2014-03-10 16:07:45 +0000 |
commit | 2efbc4a68d44130f0ad656e2ffbb846d740037cf (patch) | |
tree | 3c7baa784b5a7c73432d2796c7466b95502e6f62 /usr.sbin | |
parent | b1771e3dc6964174931d1f28d4031a796603950c (diff) | |
download | src-2efbc4a68d44130f0ad656e2ffbb846d740037cf.tar.gz src-2efbc4a68d44130f0ad656e2ffbb846d740037cf.zip |
Notes
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/mptable/mptable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mptable/mptable.c b/usr.sbin/mptable/mptable.c index fcc12c020d5b..2c29934c337b 100644 --- a/usr.sbin/mptable/mptable.c +++ b/usr.sbin/mptable/mptable.c @@ -402,7 +402,7 @@ MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp ) mpfps_t mpfps; /* map in mpfps structure*/ - *mpfpsp = mpfps = mapEntry( paddr, sizeof( mpfps ) ); + *mpfpsp = mpfps = mapEntry( paddr, sizeof( *mpfps ) ); /* show its contents */ printf( "MP Floating Pointer Structure:\n\n" ); |