about summary refs log tree commit homepage
path: root/http_get.c
diff options
context:
space:
mode:
Diffstat (limited to 'http_get.c')
-rw-r--r--http_get.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/http_get.c b/http_get.c
index e8f8f4a..8fc566e 100644
--- a/http_get.c
+++ b/http_get.c
@@ -88,7 +88,8 @@ static off_t http_get_resp_hdr(struct mog_http *http, struct stat *sb)
                                 goto resp_200;
                         count = (long long)(sb->st_size - offset);
                 } else { /* bytes=M-N*/
-                        assert(http->_p.range_beg >= 0 && http->_p.range_end >= 0
+                        assert(http->_p.range_beg >= 0
+                               && http->_p.range_end >= 0
                                && "should've sent 416");
                         offset = (long long)http->_p.range_beg;