mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
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:
parent
925d44bde6
commit
46e9afdd74
@ -310,7 +310,7 @@ int check_pkg_full(alpm_pkg_t *pkg)
|
|||||||
if(type == AE_IFREG) {
|
if(type == AE_IFREG) {
|
||||||
/* TODO: these are expected to be changed with backup files */
|
/* TODO: these are expected to be changed with backup files */
|
||||||
file_errors += check_file_size(pkgname, filepath, &st, entry);
|
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) {
|
if(config->quiet && file_errors) {
|
||||||
|
@ -42,7 +42,7 @@ static void output_cb(alpm_loglevel_t level, const char *fmt, va_list args)
|
|||||||
switch(level) {
|
switch(level) {
|
||||||
case ALPM_LOG_ERROR: printf("error: "); break;
|
case ALPM_LOG_ERROR: printf("error: "); break;
|
||||||
case ALPM_LOG_WARNING: printf("warning: "); break;
|
case ALPM_LOG_WARNING: printf("warning: "); break;
|
||||||
//case ALPM_LOG_DEBUG: printf("debug: "); break;
|
/* case ALPM_LOG_DEBUG: printf("debug: "); break; */
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
vprintf(fmt, args);
|
vprintf(fmt, args);
|
||||||
|
Loading…
Reference in New Issue
Block a user