diff options
author | scottl <scottl@FreeBSD.org> | 2005-02-13 06:21:36 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2005-02-13 06:21:36 +0000 |
commit | 9f778d1e48a6750547459224a180ae3ff08dfb24 (patch) | |
tree | 3ae1cef53513daff6cfdfed12c3dd7627ed81651 /lib | |
parent | 25050349dee28022b778a867fe6681d746363004 (diff) | |
download | FreeBSD-src-9f778d1e48a6750547459224a180ae3ff08dfb24.zip FreeBSD-src-9f778d1e48a6750547459224a180ae3ff08dfb24.tar.gz |
Use the correct variable name in ibsad()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libgpib/ibfoo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libgpib/ibfoo.c b/lib/libgpib/ibfoo.c index 541b915..e88563a 100644 --- a/lib/libgpib/ibfoo.c +++ b/lib/libgpib/ibfoo.c @@ -472,7 +472,7 @@ ibsad (int handle, int sad) io.__ident = __ID_IBSAD; io.handle = handle; - io.sad = v; + io.sad = sad; io.__field = __F_HANDLE | __F_SAD; return (__ibsubmit(&io)); } |