[tracker/collation-gconf-locale: 11/24] libtracker-data: fix alignment issues
- From: Aleksander Morgado <aleksm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/collation-gconf-locale: 11/24] libtracker-data: fix alignment issues
- Date: Thu, 4 Nov 2010 15:06:01 +0000 (UTC)
commit d1708861fddf2b6ed4d3fb817af6ab235a670c86
Author: Aleksander Morgado <aleksander lanedo com>
Date: Thu Oct 28 16:44:39 2010 +0200
libtracker-data: fix alignment issues
src/libtracker-data/tracker-db-interface-sqlite.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/src/libtracker-data/tracker-db-interface-sqlite.c b/src/libtracker-data/tracker-db-interface-sqlite.c
index ad57b08..9d7c5ab 100644
--- a/src/libtracker-data/tracker-db-interface-sqlite.c
+++ b/src/libtracker-data/tracker-db-interface-sqlite.c
@@ -594,8 +594,8 @@ tracker_db_interface_sqlite_constructor (GType type,
TrackerDBInterface *db_iface;
object = (* G_OBJECT_CLASS (tracker_db_interface_parent_class)->constructor) (type,
- n_construct_properties,
- construct_params);
+ n_construct_properties,
+ construct_params);
db_iface = TRACKER_DB_INTERFACE (object);
open_database (db_iface);
@@ -911,12 +911,12 @@ tracker_db_interface_create_statement (TrackerDBInterface *db_interfac
full_query = g_strdup_vprintf (query, args);
va_end (args);
- /* There are three kinds of queries:
- * a) Cached queries: SELECT and UPDATE ones (cache_type)
- * b) Non-Cached queries: NONE ones (cache_type)
- * c) Forced Non-Cached: in case of a stmt being already in use, we can't
- * reuse it (you can't use two different loops on a sqlite3_stmt, of
- * course). This happens with recursive uses of a cursor, for example */
+ /* There are three kinds of queries:
+ * a) Cached queries: SELECT and UPDATE ones (cache_type)
+ * b) Non-Cached queries: NONE ones (cache_type)
+ * c) Forced Non-Cached: in case of a stmt being already in use, we can't
+ * reuse it (you can't use two different loops on a sqlite3_stmt, of
+ * course). This happens with recursive uses of a cursor, for example */
if (cache_type != TRACKER_DB_STATEMENT_CACHE_TYPE_NONE) {
stmt = g_hash_table_lookup (db_interface->dynamic_statements, full_query);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]