diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-05-22 10:14:40 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-05-22 10:14:40 +0300 |
commit | c08dd6b7c0be0062a262d575c0643cab7dafcf5b (patch) | |
tree | 398cd8efaf5dfbe8eb7f327e4fbec8ab895e3f93 /build/parsePrep.c | |
parent | 973ffa42db3cc68ec1a5cd4d8e64b8f0e95e68cc (diff) | |
download | librpm-tizen-c08dd6b7c0be0062a262d575c0643cab7dafcf5b.tar.gz librpm-tizen-c08dd6b7c0be0062a262d575c0643cab7dafcf5b.tar.bz2 librpm-tizen-c08dd6b7c0be0062a262d575c0643cab7dafcf5b.zip |
Fix printing of patch numbers, doh :)
Diffstat (limited to 'build/parsePrep.c')
-rw-r--r-- | build/parsePrep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/parsePrep.c b/build/parsePrep.c index 306fae830..d6e0a404e 100644 --- a/build/parsePrep.c +++ b/build/parsePrep.c @@ -116,7 +116,7 @@ static char *doPatch(rpmSpec spec, int c, int strip, const char *db, rasprintf(&buf, "echo \"Patch #%d (%s):\"\n" "%s\n", - strip, basename(fn), patchcmd); + c, basename(fn), patchcmd); free(fn); free(patchcmd); |