diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 14:49:02 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 14:49:02 +0300 |
commit | c52905d33460c020f8f1b33da47c06a8a2cb513f (patch) | |
tree | 61d7dcdb8cb727dd21a6d82fe68f6ab6a75a9872 /tools/rpmgraph.c | |
parent | 9d9aa852ca724e4c7671cec249189f7dfef5ed8e (diff) | |
download | rpm-c52905d33460c020f8f1b33da47c06a8a2cb513f.tar.gz rpm-c52905d33460c020f8f1b33da47c06a8a2cb513f.tar.bz2 rpm-c52905d33460c020f8f1b33da47c06a8a2cb513f.zip |
Replace all uses of RPMMESS_ERROR with RPMLOG_ERR
Diffstat (limited to 'tools/rpmgraph.c')
-rw-r--r-- | tools/rpmgraph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rpmgraph.c b/tools/rpmgraph.c index c9b4ff3c8..6f28c6337 100644 --- a/tools/rpmgraph.c +++ b/tools/rpmgraph.c @@ -136,7 +136,7 @@ restart: switch (rpmrc) { case RPMRC_FAIL: default: - rpmlog(RPMMESS_ERROR, _("%s cannot be installed\n"), *fnp); + rpmlog(RPMLOG_ERR, _("%s cannot be installed\n"), *fnp); numFailed++; *fnp = NULL; break; case RPMRC_OK: @@ -191,7 +191,7 @@ maybe_manifest: } ps = rpmtsProblems(ts); if (rpmpsNumProblems(ps) > 0) { - rpmlog(RPMMESS_ERROR, _("Failed dependencies:\n")); + rpmlog(RPMLOG_ERR, _("Failed dependencies:\n")); rpmpsPrint(NULL, ps); numFailed += numPkgs; |