summaryrefslogtreecommitdiffstats
path: root/common/collection/collection_stack.c
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:05 -0400
commit6e43acff7687339d674acb671cf975177bbe70b5 (patch)
tree14021b266d9d231abe12ba703145c4d4a81fddd9 /common/collection/collection_stack.c
parenta2ffbcedd7c725e34948f8a244440067c36b3110 (diff)
downloadsssd-6e43acff7687339d674acb671cf975177bbe70b5.tar.gz
sssd-6e43acff7687339d674acb671cf975177bbe70b5.tar.xz
sssd-6e43acff7687339d674acb671cf975177bbe70b5.zip
Fixing types in queue and stack interfaces
Diffstat (limited to 'common/collection/collection_stack.c')
-rw-r--r--common/collection/collection_stack.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/collection/collection_stack.c b/common/collection/collection_stack.c
index 503ada337..509df5113 100644
--- a/common/collection/collection_stack.c
+++ b/common/collection/collection_stack.c
@@ -106,7 +106,7 @@ int col_push_binary_property(struct collection_item *stack,
/* Push an int property to stack. */
int col_push_int_property(struct collection_item *stack,
const char *property,
- int number)
+ int32_t number)
{
int error = EOK;
@@ -133,7 +133,7 @@ int col_push_int_property(struct collection_item *stack,
/* Push an unsigned int property to stack. */
int col_push_unsigned_property(struct collection_item *stack,
const char *property,
- unsigned int number)
+ uint32_t number)
{
int error = EOK;
@@ -161,7 +161,7 @@ int col_push_unsigned_property(struct collection_item *stack,
/* Push a long property. */
int col_push_long_property(struct collection_item *stack,
const char *property,
- long number)
+ int64_t number)
{
int error = EOK;
@@ -188,7 +188,7 @@ int col_push_long_property(struct collection_item *stack,
/* Push an unsigned long property. */
int col_push_ulong_property(struct collection_item *stack,
const char *property,
- unsigned long number)
+ uint64_t number)
{
int error = EOK;