From: graham.gower Date: Tue, 24 Nov 2009 02:35:06 +0000 (+0000) Subject: There should be a space before the bracket. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=8fbf6904fb7c293eb2d547db4e8b85fa57dc8bc3 There should be a space before the bracket. git-svn-id: http://opkg.googlecode.com/svn/trunk@354 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- 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); }