summaryrefslogtreecommitdiff
path: root/src/shared/util.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-04-09 23:57:35 +0200
committerSven Eden <yamakuzure@gmx.net>2017-03-14 07:54:45 +0100
commit322e94abd97bbd3b8b0d37719449c0be5b9d99d8 (patch)
tree9af847a80458426d0e7a281ba596f6d701f2f5b5 /src/shared/util.c
parent17384d7f95169dad5f769431374fc2c08101206d (diff)
util: fix a typo in comment
Diffstat (limited to 'src/shared/util.c')
-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 279def715..8071bb231 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -1353,7 +1353,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);