summaryrefslogtreecommitdiffstats
path: root/collection/collection_queue.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:14 -0400
commit74100f356c8b485e6c2b6c462ab42b6b172a676f (patch)
treec03fdf52233289f2b9ff389095d49a246cc62258 /collection/collection_queue.c
parentcb4f5de2be0eed29f48f8c3a4d855f38e0802cf8 (diff)
downloadding-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_queue.c')
-rw-r--r--collection/collection_queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/collection/collection_queue.c b/collection/collection_queue.c
index 7e06833..adac8ee 100644
--- a/collection/collection_queue.c
+++ b/collection/collection_queue.c
@@ -108,7 +108,7 @@ int col_enqueue_binary_property(struct collection_item *queue,
/* Put an int property into a queue. */
int col_enqueue_int_property(struct collection_item *queue,
const char *property,
- int number)
+ int32_t number)
{
int error = EOK;
@@ -135,7 +135,7 @@ int col_enqueue_int_property(struct collection_item *queue,
/* Put an unsigned int property into a queue. */
int col_enqueue_unsigned_property(struct collection_item *queue,
const char *property,
- unsigned int number)
+ uint32_t number)
{
int error = EOK;
@@ -163,7 +163,7 @@ int col_enqueue_unsigned_property(struct collection_item *queue,
/* Put a long property. */
int col_enqueue_long_property(struct collection_item *queue,
const char *property,
- long number)
+ int64_t number)
{
int error = EOK;
@@ -190,7 +190,7 @@ int col_enqueue_long_property(struct collection_item *queue,
/* Put an unsigned long property. */
int col_enqueue_ulong_property(struct collection_item *queue,
const char *property,
- unsigned long number)
+ uint64_t number)
{
int error = EOK;