diff options
| author | Michael Forney <mforney@mforney.org> | 2019-11-04 17:42:19 -0800 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2019-11-04 17:42:19 -0800 |
| commit | 887f731a75aff6a8671d8215d133894893f1d150 (patch) | |
| tree | 3f2952e8aecf848827d9cdf186a3cb5f3ff441fa /pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch | |
| parent | b1c40f5ba1902a9524966cd6de9709486d895039 (diff) | |
sshfs: Update to 3.6.0
Diffstat (limited to 'pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch')
| -rw-r--r-- | pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch b/pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch deleted file mode 100644 index 26b587d1..00000000 --- a/pkg/sshfs/patch/0010-Use-__VA_ARGS__-for-variadic-macros-arguments.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 0b9ea41f9e4e30552ef3cce4fee512db99c4e3ed Mon Sep 17 00:00:00 2001 -From: Michael Forney <mforney@mforney.org> -Date: Tue, 2 Jul 2019 19:50:44 -0700 -Subject: [PATCH] Use __VA_ARGS__ for variadic macros arguments - ---- - sshfs.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/sshfs.c b/sshfs.c -index d682c8f..9c65cc4 100644 ---- a/sshfs.c -+++ b/sshfs.c -@@ -479,8 +479,8 @@ static struct fuse_opt workaround_opts[] = { - FUSE_OPT_END - }; - --#define DEBUG(format, args...) \ -- do { if (sshfs.debug) fprintf(stderr, format, args); } while(0) -+#define DEBUG(format, ...) \ -+ do { if (sshfs.debug) fprintf(stderr, format, __VA_ARGS__); } while(0) - - static const char *type_name(uint8_t type) - { --- -2.22.0 - |
