mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
Table display: print message with warning: prefix
Use the normal error functions here rather than a bare fprintf(). Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
020bdb4298
commit
842c4422ed
@ -585,7 +585,8 @@ int table_display(const char *title, const alpm_list_t *header,
|
||||
totalwidth = table_calc_widths(header, rows, totalcols, &widths);
|
||||
/* return -1 if terminal is not wide enough */
|
||||
if(totalwidth > getcols()) {
|
||||
fprintf(stderr, _("insufficient columns available for table display\n"));
|
||||
pm_fprintf(stderr, ALPM_LOG_WARNING,
|
||||
_("insufficient columns available for table display\n"));
|
||||
return -1;
|
||||
}
|
||||
if(!totalwidth || !widths) {
|
||||
|
Loading…
Reference in New Issue
Block a user