diff options
Diffstat (limited to 'src/libmdsserver/macros.h')
-rw-r--r-- | src/libmdsserver/macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmdsserver/macros.h b/src/libmdsserver/macros.h index 1a2ebc0..20d277b 100644 --- a/src/libmdsserver/macros.h +++ b/src/libmdsserver/macros.h @@ -164,7 +164,7 @@ * * @param buffer:char* The buffer * @param type A data type - * @param count The number elements of the data type `type` to increase the pointer with + * @param count:size_t The number elements of the data type `type` to increase the pointer with * @retrun buffer: The buffer */ #define buf_next(buffer, type, count) \ @@ -176,7 +176,7 @@ * * @param buffer:char* The buffer * @param type A data type - * @param count The number elements of the data type `type` to decrease the pointer with + * @param count:size_t The number elements of the data type `type` to decrease the pointer with * @retrun buffer: The buffer */ #define buf_prev(buffer, type, count) \ |