summaryrefslogtreecommitdiffstats
path: root/stream/stream_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_file.c')
-rw-r--r--stream/stream_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/stream_file.c b/stream/stream_file.c
index 8d3111f4ea..bc1e7a4381 100644
--- a/stream/stream_file.c
+++ b/stream/stream_file.c
@@ -32,7 +32,7 @@ static const struct m_struct_st stream_opts = {
sizeof(struct stream_priv_s),
&stream_priv_dflts,
stream_opts_fields
-};
+};
static int fill_buffer(stream_t *s, char* buffer, int max_len){
int r = read(s->fd,buffer,max_len);
@@ -121,7 +121,7 @@ static int open_f(stream_t *stream,int mode, void* opts, int* file_format) {
#if defined(__CYGWIN__)|| defined(__MINGW32__)
m |= O_BINARY;
-#endif
+#endif
if(!strcmp(filename,"-")){
if(mode == STREAM_READ) {