From 46e9afdd74b39be78e6d66696d1e53914894e9b7 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 3 Jan 2013 18:48:50 -0300 Subject: fix comment style // -> /* */ Signed-off-by: Gerardo Exequiel Pozzi Signed-off-by: Allan McRae --- src/pacman/check.c | 2 +- src/util/cleanupdelta.c | 2 +- 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); -- cgit v1.2.3-24-g4f1b