Author: stefan2
Date: Sun Nov 25 20:37:24 2012
New Revision: 1413411
URL: http://svn.apache.org/viewvc?rev=1413411&view=rev
Log:
Follow-up to r1412969: more C89 compliance for enums
* tools/client-side/svn-bench/main.c
(svn_cl__longopt_t): remove trailing comma
Modified:
subversion/trunk/tools/client-side/svn-bench/main.c
Modified: subversion/trunk/tools/client-side/svn-bench/main.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svn-bench/main.c?rev=1413411&r1=1413410&r2=1413411&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svn-bench/main.c (original)
+++ subversion/trunk/tools/client-side/svn-bench/main.c Sun Nov 25 20:37:24 2012
@@ -66,7 +66,7 @@ typedef enum svn_cl__longopt_t {
opt_with_revprop,
opt_with_all_revprops,
opt_with_no_revprops,
- opt_trust_server_cert,
+ opt_trust_server_cert
} svn_cl__longopt_t;