From 4273ee04bdd5d6920d3ff0e5db488b8a2ddab249 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Sun, 22 Nov 2009 19:42:47 -0800 Subject: [PATCH] Minor cleanup. --- bluesky/store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bluesky/store.c b/bluesky/store.c index ec72ec2..b60bd05 100644 --- a/bluesky/store.c +++ b/bluesky/store.c @@ -138,7 +138,7 @@ BlueSkyRCStr *bluesky_store_get(BlueSkyStore *store, const gchar *key) BlueSkyStoreAsync *async = bluesky_store_async_new(store); async->op = STORE_OP_GET; async->key = g_strdup(key); - store->impl->submit(store->handle, async); + bluesky_store_async_submit(async); bluesky_store_async_wait(async); @@ -156,7 +156,7 @@ void bluesky_store_put(BlueSkyStore *store, async->key = g_strdup(key); bluesky_string_ref(val); async->data = val; - store->impl->submit(store->handle, async); + bluesky_store_async_submit(async); bluesky_store_async_wait(async); bluesky_store_async_unref(async); -- 2.20.1