summaryrefslogtreecommitdiffstats
path: root/common/collection/collection_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/collection/collection_queue.h')
-rw-r--r--common/collection/collection_queue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/collection/collection_queue.h b/common/collection/collection_queue.h
index 2fe07489f..86c392523 100644
--- a/common/collection/collection_queue.h
+++ b/common/collection/collection_queue.h
@@ -144,7 +144,7 @@ int col_enqueue_binary_property(struct collection_item *queue,
*/
int col_enqueue_int_property(struct collection_item *queue,
const char *property,
- int number);
+ int32_t number);
/**
* @brief Add unsigned value to the queue.
*
@@ -167,7 +167,7 @@ int col_enqueue_int_property(struct collection_item *queue,
*/
int col_enqueue_unsigned_property(struct collection_item *queue,
const char *property,
- unsigned int number);
+ uint32_t number);
/**
* @brief Add long integer value to the queue.
*
@@ -190,7 +190,7 @@ int col_enqueue_unsigned_property(struct collection_item *queue,
*/
int col_enqueue_long_property(struct collection_item *queue,
const char *property,
- long number);
+ int64_t number);
/**
* @brief Add unsigned long value to the queue.
*
@@ -213,7 +213,7 @@ int col_enqueue_long_property(struct collection_item *queue,
*/
int col_enqueue_ulong_property(struct collection_item *queue,
const char *property,
- unsigned long number);
+ uint64_t number);
/**
* @brief Add floating point value to the queue.
*