From 74100f356c8b485e6c2b6c462ab42b6b172a676f Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Sat, 19 Jun 2010 11:18:42 -0400 Subject: Fixing types in queue and stack interfaces --- collection/collection_stack.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'collection/collection_stack.h') diff --git a/collection/collection_stack.h b/collection/collection_stack.h index e4be156..f9b0130 100644 --- a/collection/collection_stack.h +++ b/collection/collection_stack.h @@ -145,7 +145,7 @@ int col_push_binary_property(struct collection_item *stack, */ int col_push_int_property(struct collection_item *stack, const char *property, - int number); + int32_t number); /** * @brief Push unsigned value to the stack. * @@ -168,7 +168,7 @@ int col_push_int_property(struct collection_item *stack, */ int col_push_unsigned_property(struct collection_item *stack, const char *property, - unsigned int number); + uint32_t number); /** * @brief Push long integer value to the stack. * @@ -191,7 +191,7 @@ int col_push_unsigned_property(struct collection_item *stack, */ int col_push_long_property(struct collection_item *stack, const char *property, - long number); + int64_t number); /** * @brief Push unsigned long value to the stack. * @@ -214,7 +214,7 @@ int col_push_long_property(struct collection_item *stack, */ int col_push_ulong_property(struct collection_item *stack, const char *property, - unsigned long number); + uint64_t number); /** * @brief Push floating point value to the stack. * -- cgit