socsvn commit: r254565 - soc2013/dpl/head/contrib/xz/src/xz
dpl at FreeBSD.org
dpl at FreeBSD.org
Wed Jul 10 15:17:22 UTC 2013
Author: dpl
Date: Wed Jul 10 15:17:22 2013
New Revision: 254565
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=254565
Log:
Adhere to preprocessor style, and save to make some code changes.
Modified:
soc2013/dpl/head/contrib/xz/src/xz/coder.c
Modified: soc2013/dpl/head/contrib/xz/src/xz/coder.c
==============================================================================
--- soc2013/dpl/head/contrib/xz/src/xz/coder.c Wed Jul 10 15:14:23 2013 (r254564)
+++ soc2013/dpl/head/contrib/xz/src/xz/coder.c Wed Jul 10 15:17:22 2013 (r254565)
@@ -12,7 +12,6 @@
#include "private.h"
-
/// Return value type for coder_init().
enum coder_init_ret {
CODER_INIT_NORMAL,
@@ -641,9 +640,9 @@
// Don't open the destination file when --test
// is used.
if (opt_mode == MODE_TEST || !io_open_dest(pair)) {
-# if defined(CAPSICUM) //
+#if defined(CAPSICUM)
limitfd(pair);
-# endif
+#endif
// Initialize the progress indicator.
const uint64_t in_size
= pair->src_st.st_size <= 0
@@ -666,4 +665,6 @@
io_close(pair, success);
return;
+
+
}
More information about the svn-soc-all
mailing list