summaryrefslogtreecommitdiff
path: root/common/collection/collection_stack.h
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2010-06-19 11:18:42 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-06-28 08:38:14 -0400
commit601c40e41879b464d697ac88d8c9f30b1dbd949b (patch)
tree6abaefa0c1e30528e3faaaa45ee6284016294a08 /common/collection/collection_stack.h
parent12a2aca4e7d8a44977079df184b6b88b35d333d9 (diff)
downloadsssd-601c40e41879b464d697ac88d8c9f30b1dbd949b.tar.gz
sssd-601c40e41879b464d697ac88d8c9f30b1dbd949b.tar.bz2
sssd-601c40e41879b464d697ac88d8c9f30b1dbd949b.zip
Fixing types in queue and stack interfaces
Diffstat (limited to 'common/collection/collection_stack.h')
-rw-r--r--common/collection/collection_stack.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/collection/collection_stack.h b/common/collection/collection_stack.h
index e4be156b..f9b01309 100644
--- a/common/collection/collection_stack.h
+++ b/common/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.
*