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 2014/01/12 20:16:02 UTC

svn commit: r1557601 - /subversion/trunk/subversion/libsvn_ra_serf/update.c

Author: rhuijben
Date: Sun Jan 12 19:16:01 2014
New Revision: 1557601

URL: http://svn.apache.org/r1557601
Log:
* subversion/libsvn_ra_serf/update.c
  (body_create_baton_t): Make gcc happy by removing a duplicated typedef.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/update.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/update.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/update.c?rev=1557601&r1=1557600&r2=1557601&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/update.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/update.c Sun Jan 12 19:16:01 2014
@@ -442,7 +442,7 @@ struct report_context_t {
 /* Baton for collecting REPORT body. Depending on the size this
    work is backed by a memory buffer (via serf buckets) or by
    a file */
-typedef struct body_create_baton_t
+struct body_create_baton_t
 {
   apr_pool_t *result_pool;
   apr_size_t total_bytes;
@@ -454,7 +454,7 @@ typedef struct body_create_baton_t
 
   const void *all_data;
   apr_file_t *file;
-} body_create_baton_t;
+};
 
 
 #define MAX_BODY_IN_RAM (256*1024)