fix comment style // -> /* */

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Gerardo Exequiel Pozzi 2013-01-03 18:48:50 -03:00 committed by Allan McRae
parent 925d44bde6
commit 46e9afdd74
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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);