diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:24:42 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:37:20 +0800 |
commit | 8a186c3588d3598857c36e2122fa68d01eba30fd (patch) | |
tree | 731078659d4e04af8346c5ca68512d8537b3707a /smclient/eggdesktopfile.c | |
parent | 2bf3460cd3eb0853a1d10a6e36f5091898a5533f (diff) | |
download | gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.gz gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.bz2 gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.lz gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.xz gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.zst gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.zip |
Coding style cleanups.
Diffstat (limited to 'smclient/eggdesktopfile.c')
-rw-r--r-- | smclient/eggdesktopfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smclient/eggdesktopfile.c b/smclient/eggdesktopfile.c index 21f2e38209..1d094ad181 100644 --- a/smclient/eggdesktopfile.c +++ b/smclient/eggdesktopfile.c @@ -948,11 +948,11 @@ start_startup_notification (GdkDisplay *display, launch_time = gdk_x11_display_get_user_time (display); startup_id = g_strdup_printf ("%s-%lu-%s-%s-%d_TIME%lu", g_get_prgname (), - (unsigned long)getpid (), + (unsigned long) getpid (), g_get_host_name (), argv0, sequence++, - (unsigned long)launch_time); + (unsigned long) launch_time); description = g_strdup_printf (_("Starting %s"), desktop_file->name); screen_str = g_strdup_printf ("%d", screen); @@ -1266,7 +1266,7 @@ egg_desktop_file_launchv (EggDesktopFile *desktop_file, out: if (env) { - g_ptr_array_foreach (env, (GFunc)g_free, NULL); + g_ptr_array_foreach (env, (GFunc) g_free, NULL); g_ptr_array_free (env, TRUE); } free_document_list (translated_documents); |