summaryrefslogtreecommitdiff
path: root/gck/gck-slot.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2010-09-27 23:54:24 +0000
committerStef Walter <stef@memberwebs.com>2010-09-27 23:54:24 +0000
commit01c69521390d93ae4a80b2c8db71e5eab0f02464 (patch)
tree63037301edc924f5c4008f059fd3d44292a32211 /gck/gck-slot.c
parentdd5368d83e0f57dda1a5078b144b4d12256802fa (diff)
downloadgcr-01c69521390d93ae4a80b2c8db71e5eab0f02464.tar.gz
[gck] Cleanup use of 'full' functions.
* Expect GCancellable in more places. * Remove a bunch of xxx_full() functions that are redundant. * Add a few xxx_full() functions where we don't want to have to fill in full mechanisms.
Diffstat (limited to 'gck/gck-slot.c')
-rw-r--r--gck/gck-slot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gck/gck-slot.c b/gck/gck-slot.c
index dd9a1fb..d8a4a4e 100644
--- a/gck/gck-slot.c
+++ b/gck/gck-slot.c
@@ -940,9 +940,9 @@ free_open_session (OpenSession *args)
* Return value: A new session or NULL if an error occurs.
**/
GckSession*
-gck_slot_open_session (GckSlot *self, guint options, GError **err)
+gck_slot_open_session (GckSlot *self, guint options, GCancellable *cancellable, GError **err)
{
- return gck_slot_open_session_full (self, options, 0, NULL, NULL, NULL, err);
+ return gck_slot_open_session_full (self, options, 0, NULL, NULL, cancellable, err);
}
/**