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 2013/01/17 16:20:00 UTC

svn commit: r1434714 - /subversion/trunk/subversion/libsvn_wc/externals.c

Author: rhuijben
Date: Thu Jan 17 15:19:59 2013
New Revision: 1434714

URL: http://svn.apache.org/viewvc?rev=1434714&view=rev
Log:
* subversion/libsvn_wc/externals.c
  (close_file): Make gcc happy.

Modified:
    subversion/trunk/subversion/libsvn_wc/externals.c

Modified: subversion/trunk/subversion/libsvn_wc/externals.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/externals.c?rev=1434714&r1=1434713&r2=1434714&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/externals.c (original)
+++ subversion/trunk/subversion/libsvn_wc/externals.c Thu Jan 17 15:19:59 2013
@@ -778,7 +778,7 @@ close_file(void *file_baton,
             content_state = svn_wc_notify_state_changed;
           }
         else if (disk_kind != svn_node_file
-                 || eb->added && disk_kind == svn_node_file)
+                 || (eb->added && disk_kind == svn_node_file))
           {
             /* The node is obstructed; we just change the DB */
             obstructed = TRUE;