aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2020-01-25 13:18:12 +0100
committerFabian Groffen <grobian@gentoo.org>2020-01-25 13:18:12 +0100
commit3dcb44ca2b8d53a9afbeee447ca37ef6f8ba43a8 (patch)
tree941ae44a26d09c14edc490919ee90b597c16c09b
parentqpkg: try to fix Coverity 125940 Time of check time of use (diff)
downloadportage-utils-3dcb44ca2b8d53a9afbeee447ca37ef6f8ba43a8.tar.gz
portage-utils-3dcb44ca2b8d53a9afbeee447ca37ef6f8ba43a8.tar.bz2
portage-utils-3dcb44ca2b8d53a9afbeee447ca37ef6f8ba43a8.zip
qpkg: change smiley in comment not to upset rediculous style check
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r--qpkg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpkg.c b/qpkg.c
index 1b654a6..79245d0 100644
--- a/qpkg.c
+++ b/qpkg.c
@@ -376,7 +376,7 @@ int qpkg_main(int argc, char **argv)
if (qpkg_bindir[0] != '/')
err("'%s' is not a valid package destination", qpkg_bindir);
/* brute force just unlink any file or symlink, if this fails, it's
- * actually good ;) */
+ * actually good :) */
unlink(qpkg_bindir);
fd = open(qpkg_bindir, O_RDONLY);
if ((fd == -1 && mkdir(qpkg_bindir, 0750) == -1) ||