MINOR: hq-interop: refix tx buffering

Incorrect usage of the buffer API : b_room() replaces b_size() to ensure
that we have enough size for http data copy.
diff --git a/src/hq_interop.c b/src/hq_interop.c
index 9d0d566..9af937f 100644
--- a/src/hq_interop.c
+++ b/src/hq_interop.c
@@ -98,8 +98,8 @@
 			if (fsize > count)
 				fsize = count;
 
-			if (b_size(&outbuf) < fsize)
-				fsize = b_size(&outbuf);
+			if (b_room(&outbuf) < fsize)
+				fsize = b_room(&outbuf);
 
 			if (!fsize) {
 				qcs->flags |= QC_SF_BLK_MROOM;