summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2013-01-03 22:48:50 +0100
committerAllan McRae <allan@archlinux.org>2013-01-04 12:49:37 +0100
commit46e9afdd74b39be78e6d66696d1e53914894e9b7 (patch)
treecc698ba7c48eaf6e32913687edf905dbd94cee04 /src
parent925d44bde6e7b4966b6c063e1af7cc1db29b2070 (diff)
downloadpacman-46e9afdd74b39be78e6d66696d1e53914894e9b7.tar.gz
pacman-46e9afdd74b39be78e6d66696d1e53914894e9b7.tar.xz
fix comment style // -> /* */
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/check.c2
-rw-r--r--src/util/cleanupdelta.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/check.c b/src/pacman/check.c
index a657f952..92ce05c9 100644
--- a/src/pacman/check.c
+++ b/src/pacman/check.c
@@ -310,7 +310,7 @@ int check_pkg_full(alpm_pkg_t *pkg)
if(type == AE_IFREG) {
/* TODO: these are expected to be changed with backup files */
file_errors += check_file_size(pkgname, filepath, &st, entry);
- //file_errors += check_file_md5sum(pkgname, filepath, &st, entry);
+ /* file_errors += check_file_md5sum(pkgname, filepath, &st, entry); */
}
if(config->quiet && file_errors) {
diff --git a/src/util/cleanupdelta.c b/src/util/cleanupdelta.c
index 2f7720b5..eecb1aeb 100644
--- a/src/util/cleanupdelta.c
+++ b/src/util/cleanupdelta.c
@@ -42,7 +42,7 @@ static void output_cb(alpm_loglevel_t level, const char *fmt, va_list args)
switch(level) {
case ALPM_LOG_ERROR: printf("error: "); break;
case ALPM_LOG_WARNING: printf("warning: "); break;
- //case ALPM_LOG_DEBUG: printf("debug: "); break;
+ /* case ALPM_LOG_DEBUG: printf("debug: "); break; */
default: return;
}
vprintf(fmt, args);