diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-02-12 15:49:50 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-02-12 15:49:50 +0000 |
commit | c434197487091dbf2afd23c6197471aa77801df6 (patch) | |
tree | 3d4ed7ce313c05440e4c921ac7e69dea2e6785ab /sys/dev | |
parent | 39add42b21a56630b580de4de17184685be213cf (diff) | |
download | src-c434197487091dbf2afd23c6197471aa77801df6.tar.gz src-c434197487091dbf2afd23c6197471aa77801df6.zip |
Fix prototype for ibeot()
Notes
Notes:
svn path=/head/; revision=141737
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ieee488/ugpib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ieee488/ugpib.h b/sys/dev/ieee488/ugpib.h index 04467c745c8a..24522079e6a8 100644 --- a/sys/dev/ieee488/ugpib.h +++ b/sys/dev/ieee488/ugpib.h @@ -111,7 +111,7 @@ int ibdev(int boardID, int pad, int sad, int tmo, int eot, int eos); int ibdiag(int handle, void *buffer, long cnt); int ibdma(int handle, int v); int ibeos(int handle, int eos); -int ibeot(int handle, int v); +int ibeot(int handle, int eot); int ibevent(int handle, short *event); int ibfind(char *bdname); int ibgts(int handle, int v); |