diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/pkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg.c b/libopkg/pkg.c index e37806b..e6d76a6 100644 --- a/libopkg/pkg.c +++ b/libopkg/pkg.c @@ -578,7 +578,7 @@ void pkg_formatted_field(FILE *fp, pkg_t *pkg, const char *field) fprintf(fp, "%s %s", i == 0 ? "" : ",", cdep->pkg->name); if (cdep->version) { - fprintf(fp, "(%s%s)", + fprintf(fp, " (%s%s)", constraint_to_str(cdep->constraint), cdep->version); } |