summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2009-09-07 03:12:06 -0400
committerMatthias Clasen <mclasen@redhat.com>2009-09-07 03:12:06 -0400
commit30645bd0a584137585d572b37f39d2904bba0a8f (patch)
treed494f667c78773d5cde6be3b9ea103918bb53809
parent0d1ffbf361503ac1f8236673f400e0f317635930 (diff)
Remove a dead increment
-rw-r--r--gio/glocalfileinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c
index a61cc5578..7076aac82 100644
--- a/gio/glocalfileinfo.c
+++ b/gio/glocalfileinfo.c
@@ -323,7 +323,7 @@ hex_escape_string (const char *str,
*p++ = hex_digits[c & 0xf];
}
}
- *p++ = 0;
+ *p = 0;
*free_return = TRUE;
return escaped_str;