summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-01-12 10:54:57 -0500
committerMatthew Barnes <mbarnes@redhat.com>2013-01-12 10:54:57 -0500
commit760ac4cc89b4db017de246a53c3edfa43cc13f0d (patch)
tree74e6cdf97ac042d495992f73f8d6c76336b1de4d
parentc6f80044d978a83ac857e136a3e2087f9c95c833 (diff)
downloadevolution-data-server-760ac4cc89b4db017de246a53c3edfa43cc13f0d.tar.gz
Coding style and whitespace cleanups.
-rw-r--r--addressbook/backends/webdav/e-book-backend-webdav.c2
-rw-r--r--addressbook/libebook/e-book-query.c6
-rw-r--r--calendar/backends/contacts/e-cal-backend-contacts.c2
-rw-r--r--camel/camel-db.c2
-rw-r--r--libedataserver/e-source-registry.c2
-rw-r--r--libedataserverui/e-name-selector-entry.c2
-rw-r--r--services/evolution-source-registry/evolution-source-registry.c6
7 files changed, 11 insertions, 11 deletions
diff --git a/addressbook/backends/webdav/e-book-backend-webdav.c b/addressbook/backends/webdav/e-book-backend-webdav.c
index 393b2b304..0b3410c68 100644
--- a/addressbook/backends/webdav/e-book-backend-webdav.c
+++ b/addressbook/backends/webdav/e-book-backend-webdav.c
@@ -1351,7 +1351,7 @@ e_book_backend_webdav_open (EBookBackend *backend,
g_mutex_lock (&priv->cache_lock);
/* make sure the priv->uri ends with a forward slash */
- if (priv->uri[strlen(priv->uri) - 1] != '/') {
+ if (priv->uri[strlen (priv->uri) - 1] != '/') {
gchar *tmp = priv->uri;
priv->uri = g_strconcat (tmp, "/", NULL);
g_free (tmp);
diff --git a/addressbook/libebook/e-book-query.c b/addressbook/libebook/e-book-query.c
index 74ff9c385..aea670938 100644
--- a/addressbook/libebook/e-book-query.c
+++ b/addressbook/libebook/e-book-query.c
@@ -619,9 +619,9 @@ func_exists (struct _ESExp *f,
static ESExpResult *
func_exists_vcard (struct _ESExp *f,
- gint argc,
- struct _ESExpResult **argv,
- gpointer data)
+ gint argc,
+ struct _ESExpResult **argv,
+ gpointer data)
{
GList **list = data;
ESExpResult *r;
diff --git a/calendar/backends/contacts/e-cal-backend-contacts.c b/calendar/backends/contacts/e-cal-backend-contacts.c
index 2f7b358a6..2c387e6da 100644
--- a/calendar/backends/contacts/e-cal-backend-contacts.c
+++ b/calendar/backends/contacts/e-cal-backend-contacts.c
@@ -515,7 +515,7 @@ contact_record_cb_new (ECalBackendContacts *cbc,
static void
contact_record_cb_free (ContactRecordCB *cb_data,
- gboolean can_free_result)
+ gboolean can_free_result)
{
if (can_free_result) {
if (cb_data->as_string)
diff --git a/camel/camel-db.c b/camel/camel-db.c
index 7e8501f85..87e78ba90 100644
--- a/camel/camel-db.c
+++ b/camel/camel-db.c
@@ -119,7 +119,7 @@ sync_push_request (CamelSqlite3File *cFile,
if (!cFile->flags) {
/* nothing to sync, might be when xClose is called
- without any pending xSync request */
+ * without any pending xSync request */
g_static_rec_mutex_unlock (&cFile->sync_mutex);
return;
}
diff --git a/libedataserver/e-source-registry.c b/libedataserver/e-source-registry.c
index 681754b6c..18bf41c2f 100644
--- a/libedataserver/e-source-registry.c
+++ b/libedataserver/e-source-registry.c
@@ -1732,7 +1732,7 @@ exit:
g_main_context_pop_thread_default (main_context);
/* Make sure the main_context doesn't have pending operations;
- workarounds https://bugzilla.gnome.org/show_bug.cgi?id=690126 */
+ * workarounds https://bugzilla.gnome.org/show_bug.cgi?id=690126 */
while (g_main_context_pending (main_context))
g_main_context_iteration (main_context, FALSE);
diff --git a/libedataserverui/e-name-selector-entry.c b/libedataserverui/e-name-selector-entry.c
index 4f0f5705b..f8987f27f 100644
--- a/libedataserverui/e-name-selector-entry.c
+++ b/libedataserverui/e-name-selector-entry.c
@@ -3100,7 +3100,7 @@ populate_popup (ENameSelectorEntry *name_selector_entry,
static gint
compare_gint_ptr_cb (gconstpointer a,
- gconstpointer b)
+ gconstpointer b)
{
return GPOINTER_TO_INT (a) - GPOINTER_TO_INT (b);
}
diff --git a/services/evolution-source-registry/evolution-source-registry.c b/services/evolution-source-registry/evolution-source-registry.c
index 6aca8369e..81bddf8f6 100644
--- a/services/evolution-source-registry/evolution-source-registry.c
+++ b/services/evolution-source-registry/evolution-source-registry.c
@@ -93,9 +93,9 @@ reload:
g_print ("Reloading...\n");
/* It's possible the Reload is called after restore, where
- the ~/.config/evolution/sources directory can be missing,
- thus create it, because e_server_side_source_get_user_dir()
- may have its static variable already set to non-NULL value.
+ * the ~/.config/evolution/sources directory can be missing,
+ * thus create it, because e_server_side_source_get_user_dir()
+ * may have its static variable already set to non-NULL value.
*/
config_dir = e_get_user_config_dir ();
dirname = g_build_filename (config_dir, "sources", NULL);