btrfs: Remove unused flush var in shrink_delalloc
[linux-2.6-block.git] / fs / btrfs / send.c
index 6615d849f0f028639e5fdee466b60ce12a731308..1f5748c7d1c74cd6538fcf9cad55f8759337a188 100644 (file)
@@ -613,9 +613,9 @@ static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr,
 }
 
 
-#define TLV_PUT(sctx, attrtype, attrlen, data) \
+#define TLV_PUT(sctx, attrtype, data, attrlen) \
        do { \
-               ret = tlv_put(sctx, attrtype, attrlen, data); \
+               ret = tlv_put(sctx, attrtype, data, attrlen); \
                if (ret < 0) \
                        goto tlv_put_failure; \
        } while (0)