Author: julianfoad
Date: Fri Jan 21 11:41:32 2022
New Revision: 1897292
URL: http://svn.apache.org/viewvc?rev=1897292&view=rev
Log:
On the 'pristines-on-demand' branch: source code hygiene.
(compare_and_verify): Correct misleading source code indentation.
Modified:
subversion/branches/pristines-on-demand/subversion/libsvn_wc/textbase.c
Modified:
subversion/branches/pristines-on-demand/subversion/libsvn_wc/textbase.c
URL:
http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand/subversion/libsvn_wc/textbase.c?rev=1897292&r1=1897291&r2=1897292&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand/subversion/libsvn_wc/textbase.c
(original)
+++ subversion/branches/pristines-on-demand/subversion/libsvn_wc/textbase.c Fri
Jan 21 11:41:32 2022
@@ -117,14 +117,14 @@ compare_and_verify(svn_boolean_t *modifi
else
pristine_eol_str = eol_str;
- /* Wrap file stream to detranslate into normal form,
- * "repairing" the EOL style if it is inconsistent. */
- v_stream = svn_subst_stream_translated(v_stream,
- pristine_eol_str,
- TRUE /* repair */,
- keywords,
- FALSE /* expand */,
- scratch_pool);
+ /* Wrap file stream to detranslate into normal form,
+ * "repairing" the EOL style if it is inconsistent. */
+ v_stream = svn_subst_stream_translated(v_stream,
+ pristine_eol_str,
+ TRUE /* repair */,
+ keywords,
+ FALSE /* expand */,
+ scratch_pool);
}
}