Changeset: f4658647779a for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f4658647779a
Modified Files:
        clients/examples/C/streamcat.c
        common/stream/lz4_stream.c
Branch: makelibstreamgreatagain
Log Message:

Small fixes inspired by cmake experiment


diffs (51 lines):

diff --git a/clients/examples/C/streamcat.c b/clients/examples/C/streamcat.c
--- a/clients/examples/C/streamcat.c
+++ b/clients/examples/C/streamcat.c
@@ -1,5 +1,5 @@
-#include <monetdb_config.h>
-#include <stream.h>
+#include "monetdb_config.h"
+#include "stream.h"
 
 #include <errno.h>
 #include <stdarg.h>
@@ -26,7 +26,7 @@ const char *USAGE =
        "    - blocksize:N       Copy in blocks of this size\n"
        "With W_WRAPPER:\n"
        "    - iconv:enc         stream = iconv_wstream(stream, enc)\n"
-       "    - blocksize:N       Copy in blocks of this size\n"
+       "    - blocksize:N       Copy out blocks of this size\n"
        ;
 
 
diff --git a/common/stream/lz4_stream.c b/common/stream/lz4_stream.c
--- a/common/stream/lz4_stream.c
+++ b/common/stream/lz4_stream.c
@@ -364,21 +364,27 @@ lz4_stream(stream *inner, int preset)
 }
 stream *open_lz4rstream(const char *filename)
 {
+       (void) filename;
        return NULL;
 }
 
 stream *open_lz4wstream(const char *filename, const char *mode)
 {
+       (void) filename;
+       (void) mode;
        return NULL;
 }
 
 stream *open_lz4rastream(const char *filename)
 {
+       (void) filename;
        return NULL;
 }
 
 stream *open_lz4wastream(const char *filename, const char *mode)
 {
+       (void) filename;
+       (void) mode;
        return NULL;
 }
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to