From d6015263bea185d43906729dd676fd790636ac34 Mon Sep 17 00:00:00 2001 From: aeb Date: Thu, 16 Mar 2000 03:59:53 +0000 Subject: [PATCH] Fix spelign of raw1394_set_fcp_handler(). git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@13 53a565d1-3bb7-0310-b661-cf11e63c67ab --- src/raw1394.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/raw1394.h b/src/raw1394.h index 899cd5a..88c50f5 100644 --- a/src/raw1394.h +++ b/src/raw1394.h @@ -113,7 +113,7 @@ iso_handler_t raw1394_set_iso_handler(raw1394handle_t handle, */ typedef int (*fcp_handler_t)(raw1394handle_t, nodeid_t nodeid, int response, size_t length, unsigned char *data); -fcp_handler_t raw1394_set_fcp_handlet(raw1394handle_t, fcp_handler_t); +fcp_handler_t raw1394_set_fcp_handler(raw1394handle_t, fcp_handler_t); /* * This is the general request handle. It is used by the default tag handler @@ -161,8 +161,8 @@ int raw1394_stop_iso_rcv(raw1394handle_t handle, unsigned int channel); * Start and stop receiving requests sent to the local FCP_COMMAND and * FCP_RESPONSE registers. */ -int raw1394_start_fcp_listen(struct raw1394_handle *handle); -int raw1394_stop_fcp_listen(struct raw1394_handle *handle); +int raw1394_start_fcp_listen(raw1394handle_t handle); +int raw1394_stop_fcp_listen(raw1394handle_t handle); #ifdef __cplusplus }