Skip to content

Commit

Permalink
Merge pull request #19 from f2404/issue_10_fix
Browse files Browse the repository at this point in the history
Issue 10 fix
  • Loading branch information
Skunnyk committed Oct 4, 2015
2 parents c3d6a28 + badd1a1 commit 30b5c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ void color_print_package (void * p, printpkgfn f)
* C_VER otherwise
*/
lver = alpm_local_pkg_get_str (info, 'l');
info = f(p, (config.aur_upgrades) ? 'V' : 'v');
info = f(p, (config.aur_upgrades || config.filter & F_UPGRADES) ? 'V' : 'v');
ver = STRDUP (info);
info = (aur) ? f(p, 'm') : NULL;
if (config.aur_foreign)
Expand Down

0 comments on commit 30b5c66

Please sign in to comment.