Fix trivial typo to unbreak the build (there was a colon instead of a

2008-09-16  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* gdesktopappinfo.c (g_desktop_app_info_new_from_keyfile):
	Fix trivial typo to unbreak the build (there was a colon
	instead of a semicolon at the end of a statement).


svn path=/trunk/; revision=7500
This commit is contained in:
Wouter Bolsterlee 2008-09-16 09:13:19 +00:00 committed by Wouter Bolsterlee
parent 9d3d04412b
commit 1d627b703f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-09-16 Wouter Bolsterlee <wbolster@svn.gnome.org>
* gdesktopappinfo.c (g_desktop_app_info_new_from_keyfile):
Fix trivial typo to unbreak the build (there was a colon
instead of a semicolon at the end of a statement).
2008-09-15 Matthias Clasen <mclasen@redhat.com>
Bug 552352 g_app_info_launch doesn't work if "Path" key in .desktop

View File

@ -275,7 +275,7 @@ g_desktop_app_info_new_from_keyfile (GKeyFile *key_file)
if (info->path && info->path[0] == '\0')
{
g_free (info->path);
info->path = NULL:
info->path = NULL;
}
return info;