aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar lostd <lostd@2f30.org>2014-11-01 01:56:26 +0200
committerGravatar lostd <lostd@2f30.org>2014-11-01 01:56:26 +0200
commit77565ecdb87d9771bcd929b222c2af2345a37e26 (patch)
tree5f9041283322072e9fad3c42b938c40275d527b2
parent12da2ff0280329a65667d38c9f05353c734b932b (diff)
downloadnnn-77565ecdb87d9771bcd929b222c2af2345a37e26.tar.gz
Style fix in a comment
-rw-r--r--noice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/noice.c b/noice.c
index a9f08c4..89da676 100644
--- a/noice.c
+++ b/noice.c
@@ -107,7 +107,7 @@ xdirname(const char *path)
char *p, *tmp;
/* Some implementations of dirname(3) may modify `path' and some
- * return a pointer inside `path` and we cannot free(3) the
+ * return a pointer inside `path' and we cannot free(3) the
* original string if we lose track of it. */
tmp = xstrdup(path);
p = dirname(tmp);