diff options
author | Stef Walter <stef@memberwebs.com> | 2010-09-27 23:54:24 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2010-09-27 23:54:24 +0000 |
commit | 01c69521390d93ae4a80b2c8db71e5eab0f02464 (patch) | |
tree | 63037301edc924f5c4008f059fd3d44292a32211 /gck/gck-slot.c | |
parent | dd5368d83e0f57dda1a5078b144b4d12256802fa (diff) | |
download | gcr-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.c | 4 |
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); } /** |