From 1d627b703f79c7250a9eb6442fd1a81c9c2f5d53 Mon Sep 17 00:00:00 2001 From: Wouter Bolsterlee Date: Tue, 16 Sep 2008 09:13:19 +0000 Subject: [PATCH] Fix trivial typo to unbreak the build (there was a colon instead of a 2008-09-16 Wouter Bolsterlee * 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 | 6 ++++++ gio/gdesktopappinfo.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gio/ChangeLog b/gio/ChangeLog index b1fc1ece4..e905c539f 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,9 @@ +2008-09-16 Wouter Bolsterlee + + * 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 Bug 552352 – g_app_info_launch doesn't work if "Path" key in .desktop diff --git a/gio/gdesktopappinfo.c b/gio/gdesktopappinfo.c index 027334ca0..59890e44e 100644 --- a/gio/gdesktopappinfo.c +++ b/gio/gdesktopappinfo.c @@ -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;