summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:49:02 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:49:02 +0300
commitc52905d33460c020f8f1b33da47c06a8a2cb513f (patch)
tree61d7dcdb8cb727dd21a6d82fe68f6ab6a75a9872 /build.c
parent9d9aa852ca724e4c7671cec249189f7dfef5ed8e (diff)
downloadlibrpm-tizen-c52905d33460c020f8f1b33da47c06a8a2cb513f.tar.gz
librpm-tizen-c52905d33460c020f8f1b33da47c06a8a2cb513f.tar.bz2
librpm-tizen-c52905d33460c020f8f1b33da47c06a8a2cb513f.zip
Replace all uses of RPMMESS_ERROR with RPMLOG_ERR
Diffstat (limited to 'build.c')
-rw-r--r--build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.c b/build.c
index 16b445492..93e3d116c 100644
--- a/build.c
+++ b/build.c
@@ -31,7 +31,7 @@ static int checkSpec(rpmts ts, Header h)
ps = rpmtsProblems(ts);
if (rc == 0 && rpmpsNumProblems(ps) > 0) {
- rpmlog(RPMMESS_ERROR, _("Failed build dependencies:\n"));
+ rpmlog(RPMLOG_ERR, _("Failed build dependencies:\n"));
rpmpsPrint(NULL, ps);
rc = 1;
}