You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2016/01/23 23:42:12 UTC

svn commit: r1726454 - /subversion/trunk/subversion/libsvn_ra_serf/request_body.c

Author: philip
Date: Sat Jan 23 22:42:12 2016
New Revision: 1726454

URL: http://svn.apache.org/viewvc?rev=1726454&view=rev
Log:
* subversion/libsvn_ra_serf/request_body.c
  (struct svn_ra_serf__request_body_t): Avoid redefining typedef to fix
   a clang compiler warning.

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

Modified: subversion/trunk/subversion/libsvn_ra_serf/request_body.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/request_body.c?rev=1726454&r1=1726453&r2=1726454&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/request_body.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/request_body.c Sat Jan 23 22:42:12 2016
@@ -25,7 +25,7 @@
 
 #include "ra_serf.h"
 
-typedef struct svn_ra_serf__request_body_t
+struct svn_ra_serf__request_body_t
 {
   svn_stream_t *stream;
   apr_size_t in_memory_size;
@@ -36,7 +36,7 @@ typedef struct svn_ra_serf__request_body
   apr_file_t *file;
   apr_pool_t *result_pool;
   apr_pool_t *scratch_pool;
-} svn_ra_serf__request_body_t;
+};
 
 /* Fold all previously collected data in a single buffer allocated in
    RESULT_POOL and clear all intermediate state. */