Fix trivial typo to unbreak the build (there was a colon instead of a
authorWouter Bolsterlee <wbolster@svn.gnome.org>
Tue, 16 Sep 2008 09:13:19 +0000 (09:13 +0000)
committerWouter Bolsterlee <wbolster@src.gnome.org>
Tue, 16 Sep 2008 09:13:19 +0000 (09:13 +0000)
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

gio/ChangeLog
gio/gdesktopappinfo.c

index b1fc1ec..e905c53 100644 (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 
index 027334c..59890e4 100644 (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;