aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2013-03-22 11:18:53 -0500
committerCharles Kerr <charles.kerr@canonical.com>2013-03-22 11:18:53 -0500
commit98cae790d2d583d55d682d92c3ee03b768c05257 (patch)
tree01aeb41580b7e021f48ced290aa3c14a88360282 /tools
parent22d673c448edcd06734ff7c8197366747ad6504b (diff)
downloadlibayatana-indicator-98cae790d2d583d55d682d92c3ee03b768c05257.tar.gz
libayatana-indicator-98cae790d2d583d55d682d92c3ee03b768c05257.tar.bz2
libayatana-indicator-98cae790d2d583d55d682d92c3ee03b768c05257.zip
introduce tab damage for consistency with the rest of indicator-loader.c
Diffstat (limited to 'tools')
-rw-r--r--tools/indicator-loader.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/indicator-loader.c b/tools/indicator-loader.c
index ccc60ea..5d889bf 100644
--- a/tools/indicator-loader.c
+++ b/tools/indicator-loader.c
@@ -33,10 +33,10 @@ static gchar * profile = "desktop";
static gchar * title = NULL;
static GOptionEntry entries[] =
-{
+{
{ "profile", 'p', 0, G_OPTION_ARG_STRING, &profile, "Profile [default: 'desktop']", NULL },
{ NULL }
-};
+};
static GHashTable * entry_to_menuitem = NULL;
@@ -237,9 +237,9 @@ main (int argc, char ** argv)
gtk_main();
- /* cleanup */
+ /* cleanup */
g_hash_table_destroy (entry_to_menuitem);
- g_free (title);
- g_option_context_free (context);
+ g_free (title);
+ g_option_context_free (context);
return 0;
}