summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2012-11-23 11:35:13 +0000
committerRichard Hughes <richard@hughsie.com>2012-11-23 11:51:52 +0000
commita843bbb0e71eae0041ef9c67f2a3cc91f04944f6 (patch)
treede4b7ee4622efb3b248322726f916d12bca7bd36 /client
parentff9e3191a4371355c84534e92deb11d4fda1f662 (diff)
downloadcolord-a843bbb0e71eae0041ef9c67f2a3cc91f04944f6.tar.gz
trivial: Some whitespace fixes for CodingStyle
Diffstat (limited to 'client')
-rw-r--r--client/cd-util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/cd-util.c b/client/cd-util.c
index aa079a6..b8e354b 100644
--- a/client/cd-util.c
+++ b/client/cd-util.c
@@ -278,7 +278,7 @@ cd_util_show_device (CdDevice *device)
/* print profiles */
profiles = cd_device_get_profiles (device);
- for (i=0; i<profiles->len; i++) {
+ for (i = 0; i < profiles->len; i++) {
profile_tmp = g_ptr_array_index (profiles, i);
/* TRANSLATORS: the profile for the device */
str_tmp = g_strdup_printf ("%s %i", _("Profile"), i+1);
@@ -530,7 +530,7 @@ cd_util_get_descriptions (GPtrArray *array)
GString *string;
/* get maximum command length */
- for (i=0; i<array->len; i++) {
+ for (i = 0; i < array->len; i++) {
item = g_ptr_array_index (array, i);
len = strlen (item->name);
if (len > max_len)
@@ -543,7 +543,7 @@ cd_util_get_descriptions (GPtrArray *array)
/* print each command */
string = g_string_new ("");
- for (i=0; i<array->len; i++) {
+ for (i = 0; i < array->len; i++) {
item = g_ptr_array_index (array, i);
g_string_append (string, " ");
g_string_append (string, item->name);
@@ -573,7 +573,7 @@ cd_util_run (CdUtilPrivate *priv, const gchar *command, gchar **values, GError *
GString *string;
/* find command */
- for (i=0; i<priv->cmd_array->len; i++) {
+ for (i = 0; i < priv->cmd_array->len; i++) {
item = g_ptr_array_index (priv->cmd_array, i);
if (g_strcmp0 (item->name, command) == 0) {
ret = item->callback (priv, values, error);
@@ -586,7 +586,7 @@ cd_util_run (CdUtilPrivate *priv, const gchar *command, gchar **values, GError *
/* TRANSLATORS: error message */
g_string_append_printf (string, "%s\n",
_("Command not found, valid commands are:"));
- for (i=0; i<priv->cmd_array->len; i++) {
+ for (i = 0; i < priv->cmd_array->len; i++) {
item = g_ptr_array_index (priv->cmd_array, i);
g_string_append_printf (string, " * %s\n", item->name);
}