diff options
| author | Dmitri Pal <dpal@redhat.com> | 2010-06-19 11:18:42 -0400 |
|---|---|---|
| committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-06-28 08:38:14 -0400 |
| commit | 74100f356c8b485e6c2b6c462ab42b6b172a676f (patch) | |
| tree | c03fdf52233289f2b9ff389095d49a246cc62258 /collection/collection_stack.c | |
| parent | cb4f5de2be0eed29f48f8c3a4d855f38e0802cf8 (diff) | |
| download | ding-libs-74100f356c8b485e6c2b6c462ab42b6b172a676f.tar.gz ding-libs-74100f356c8b485e6c2b6c462ab42b6b172a676f.tar.xz ding-libs-74100f356c8b485e6c2b6c462ab42b6b172a676f.zip | |
Fixing types in queue and stack interfaces
Diffstat (limited to 'collection/collection_stack.c')
| -rw-r--r-- | collection/collection_stack.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/collection/collection_stack.c b/collection/collection_stack.c index 503ada3..509df51 100644 --- a/collection/collection_stack.c +++ b/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; |
