Author: rhuijben
Date: Thu Apr 4 18:23:37 2013
New Revision: 1464667
URL: http://svn.apache.org/r1464667
Log:
* subversion/tests/libsvn_subr/error-code-test.c
(err_defn): Following up on r1464570, follow struct layout change in error.c
Modified:
subversion/trunk/subversion/tests/libsvn_subr/error-code-test.c
Modified: subversion/trunk/subversion/tests/libsvn_subr/error-code-test.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/error-code-test.c?rev=1464667&r1=1464666&r2=1464667&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/error-code-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/error-code-test.c Thu Apr 4
18:23:37 2013
@@ -28,8 +28,9 @@
#include "svn_error.h"
typedef struct err_defn {
- svn_errno_t errcode;
- const char *errdesc;
+ svn_errno_t errcode; /* 160004 */
+ const char *errname; /* SVN_ERR_FS_CORRUPT */
+ const char *errdesc; /* default message */
} err_defn;
/* To understand what is going on here, read svn_error_codes.h. */