You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by pm...@apache.org on 2015/04/13 06:51:48 UTC

incubator-corinthia git commit: dfconvert: Prefix error messages with "Error: "

Repository: incubator-corinthia
Updated Branches:
  refs/heads/master 457ad856b -> 7015ab06f


dfconvert: Prefix error messages with "Error: "

In some cases it wasn't always obvious that a particular message was an
error. This should avoid that confusion.


Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/7015ab06
Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/7015ab06
Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/7015ab06

Branch: refs/heads/master
Commit: 7015ab06f5f780add31725d57139fe41135cd21b
Parents: 457ad85
Author: Peter Kelly <pe...@uxproductivity.com>
Authored: Mon Apr 13 11:51:02 2015 +0700
Committer: Peter Kelly <pe...@uxproductivity.com>
Committed: Mon Apr 13 11:51:02 2015 +0700

----------------------------------------------------------------------
 consumers/dfconvert/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/7015ab06/consumers/dfconvert/src/main.c
----------------------------------------------------------------------
diff --git a/consumers/dfconvert/src/main.c b/consumers/dfconvert/src/main.c
index 2d47e40..5bbfcf2 100644
--- a/consumers/dfconvert/src/main.c
+++ b/consumers/dfconvert/src/main.c
@@ -68,7 +68,7 @@ int main(int argc, const char **argv)
         return 0;
     }
 
-    fprintf(stderr,"%s\n",DFErrorMessage(&error));
+    fprintf(stderr,"Error: %s\n",DFErrorMessage(&error));
     DFErrorRelease(error);
     return 1;
 }