summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-04-09 23:57:35 +0200
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-04-09 23:58:28 +0200
commit96406c1a278bfd1c1b69a248cc6c223755077f02 (patch)
tree087f8212862ba41266c179bf478ecfbe772e2c21 /src/shared
parent7757517220a320eccde47b3fb342e86663d5e105 (diff)
util: fix a typo in comment
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c
index 23468b7af6..7175e808b3 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -1332,7 +1332,7 @@ char *cescape(const char *s) {
assert(s);
- /* Does C style string escaping. May be be reversed with
+ /* Does C style string escaping. May be reversed with
* cunescape(). */
r = new(char, strlen(s)*4 + 1);