You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2011/04/19 20:14:10 UTC

svn commit: r1095152 - /subversion/trunk/subversion/svn/status.c

Author: rhuijben
Date: Tue Apr 19 18:14:10 2011
New Revision: 1095152

URL: http://svn.apache.org/viewvc?rev=1095152&view=rev
Log:
For issue #2780, remove an unneeded abort() call.

* subversion/svn/status.c
  (generate_status_desc): Use SVN_ERR_MALFUNCTION_NO_RETURN() instead of
    abort().

Modified:
    subversion/trunk/subversion/svn/status.c

Modified: subversion/trunk/subversion/svn/status.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/status.c?rev=1095152&r1=1095151&r2=1095152&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/status.c (original)
+++ subversion/trunk/subversion/svn/status.c Tue Apr 19 18:14:10 2011
@@ -112,7 +112,8 @@ generate_status_desc(enum svn_wc_status_
     case svn_wc_status_ignored:     return "ignored";
     case svn_wc_status_external:    return "external";
     case svn_wc_status_unversioned: return "unversioned";
-    default:                        abort();
+    default:
+      SVN_ERR_MALFUNCTION_NO_RETURN();
     }
 }