[gimp] libgimpconfig: fix loop condition
- From: Mikael Magnusson <mikachu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] libgimpconfig: fix loop condition
- Date: Wed, 29 Oct 2014 20:43:42 +0000 (UTC)
commit d96096515e097a9f2e5d6797a8dffe22ea93308e
Author: Mikael Magnusson <mikachu src gnome org>
Date: Wed Oct 29 21:01:00 2014 +0100
libgimpconfig: fix loop condition
libgimpconfig/gimpconfig-path.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libgimpconfig/gimpconfig-path.c b/libgimpconfig/gimpconfig-path.c
index b5bb139..ab5aea2 100644
--- a/libgimpconfig/gimpconfig-path.c
+++ b/libgimpconfig/gimpconfig-path.c
@@ -522,7 +522,7 @@ gimp_config_path_extract_token (const gchar **str)
p = *str + 2;
- while (*p && (*p != '}'))
+ while (p && (*p != '}'))
p = g_utf8_next_char (p);
if (!p)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]