From 463fa3027e63d56f203c58ec490e082d9da5e2f8 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Wed, 29 May 2013 15:28:01 +0200 Subject: [PATCH] netfile: fix check (dprintf is a bad macro and needs braces) --- src/driver/netfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/driver/netfile.cpp b/src/driver/netfile.cpp index d1e66aecd..eed2ae77e 100644 --- a/src/driver/netfile.cpp +++ b/src/driver/netfile.cpp @@ -421,9 +421,9 @@ int request_file(URL *url) if(meta_int) { - if (slot < 0) + if (slot < 0) { dprintf(stderr, "error: meta_int != 0 && slot < 0"); - else { + } else { /* hook in the filter function if there is meta */ /* data present in the stream */ cache[slot].filter_arg = ShoutCAST_InitFilter(meta_int);