From c68121961226dcce52ad38daced6ad848555849e Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 23 May 2013 14:11:59 +0200 Subject: heartbeat: Fix wrong error codes in documentation --- src/heartbeat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/heartbeat.c') diff --git a/src/heartbeat.c b/src/heartbeat.c index b33f236..e03b44e 100644 --- a/src/heartbeat.c +++ b/src/heartbeat.c @@ -143,8 +143,8 @@ heartbeat_error_t heartbeat_client_free(heartbeat_client_t client) * @param client The heartbeat client * @param plist The plist to send * - * @return DIAGNOSTICS_RELAY_E_SUCCESS on success, - * DIAGNOSTICS_RELAY_E_INVALID_ARG when client or plist is NULL + * @return HEARTBEAT_E_SUCCESS on success, + * HEARTBEAT_E_INVALID_ARG when client or plist is NULL */ heartbeat_error_t heartbeat_send(heartbeat_client_t client, plist_t plist) { @@ -167,8 +167,8 @@ heartbeat_error_t heartbeat_send(heartbeat_client_t client, plist_t plist) * @param client The heartbeat client * @param plist The plist to store the received data * - * @return DIAGNOSTICS_RELAY_E_SUCCESS on success, - * DIAGNOSTICS_RELAY_E_INVALID_ARG when client or plist is NULL + * @return HEARTBEAT_E_SUCCESS on success, + * HEARTBEAT_E_INVALID_ARG when client or plist is NULL */ heartbeat_error_t heartbeat_receive(heartbeat_client_t client, plist_t * plist) { -- cgit v1.1-32-gdbae