summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Burnicki <martin.burnicki@meinberg.de>2023-07-07 15:51:03 +0200
committerMartin Burnicki <martin.burnicki@meinberg.de>2023-07-07 15:51:03 +0200
commitbd2b008b71b7ca7521c2d21accfa57f609ea98f4 (patch)
tree77076a1a4172c88e1039ac9993855c6c55e8b25d
parentc8f57830c311938bc6f4b51ffe765acabb37d03b (diff)
downloadmbgtools-lx-bd2b008b71b7ca7521c2d21accfa57f609ea98f4.tar.gz
mbgtools-lx-bd2b008b71b7ca7521c2d21accfa57f609ea98f4.zip
Fix a doxygen comment in an mbglib module
-rw-r--r--mbglib/common/mbgserio.c6
-rw-r--r--mbglib/common/mbgserio.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/mbglib/common/mbgserio.c b/mbglib/common/mbgserio.c
index 7285543..7439c7b 100644
--- a/mbglib/common/mbgserio.c
+++ b/mbglib/common/mbgserio.c
@@ -1,6 +1,6 @@
/**************************************************************************
*
- * $Id: mbgserio.c 1.12 2023/02/16 07:34:33 gregoire.diehl TRASH $
+ * $Id: mbgserio.c 1.13 2023/05/09 10:00:38 martin REL_M $
*
* Copyright (c) Meinberg Funkuhren, Bad Pyrmont, Germany
*
@@ -9,6 +9,8 @@
*
* -----------------------------------------------------------------------
* $Log: mbgserio.c $
+ * Revision 1.13 2023/05/09 10:00:38 martin
+ * Fixed a doxygen comment.
* Revision 1.12 2023/02/16 07:34:33 gregoire.diehl
* Added strdup define for target CVI
* Revision 1.11 2021/12/01 10:19:07Z martin.burnicki
@@ -1360,7 +1362,7 @@ _NO_MBG_API_ATTR int _MBG_API mbgserio_read( MBGSERIO_DEV *sdev, void *buffer, u
* @param[in] buffer Buffer with the bytes to write.
* @param[in] count Number of bytes in @p buffer to write.
*
- * @return On Success, the (positive) number of byte read,
+ * @return On Success, the (positive) number of byte written,
* or one of the (negative) @ref MBG_ERROR_CODES on error.
*/
_NO_MBG_API_ATTR int _MBG_API mbgserio_write( MBGSERIO_DEV *sdev, const void *buffer, unsigned int count )
diff --git a/mbglib/common/mbgserio.h b/mbglib/common/mbgserio.h
index 96c3be7..73b9cc8 100644
--- a/mbglib/common/mbgserio.h
+++ b/mbglib/common/mbgserio.h
@@ -1,7 +1,7 @@
/**************************************************************************
*
- * $Id: mbgserio.h 1.12 2021/12/01 10:19:10 martin.burnicki REL_M $
+ * $Id: mbgserio.h 1.13 2023/05/09 10:00:41 martin REL_M $
*
* Copyright (c) Meinberg Funkuhren, Bad Pyrmont, Germany
*
@@ -10,6 +10,8 @@
*
* -----------------------------------------------------------------------
* $Log: mbgserio.h $
+ * Revision 1.13 2023/05/09 10:00:41 martin
+ * Fixed a doxygen comment.
* Revision 1.12 2021/12/01 10:19:10 martin.burnicki
* Make a parameter of mbgserio_get_duration_rcv() const.
* Revision 1.11 2021/05/04 20:43:25 martin
@@ -337,7 +339,7 @@ typedef struct
* @param[in] buffer Buffer with the bytes to write.
* @param[in] count Number of bytes in @p buffer to write.
*
- * @return On Success, the (positive) number of byte read,
+ * @return On Success, the (positive) number of byte written,
* or one of the (negative) @ref MBG_ERROR_CODES on error.
*/
_NO_MBG_API_ATTR int _MBG_API mbgserio_write( MBGSERIO_DEV *sdev, const void *buffer, unsigned int count ) ;