diff options
Diffstat (limited to 'pkg/squashfs-tools/patch')
3 files changed, 3 insertions, 0 deletions
diff --git a/pkg/squashfs-tools/patch/0001-Avoid-pointer-arithmetic-with-void.patch b/pkg/squashfs-tools/patch/0001-Avoid-pointer-arithmetic-with-void.patch index 24615b3b..ed167604 100644 --- a/pkg/squashfs-tools/patch/0001-Avoid-pointer-arithmetic-with-void.patch +++ b/pkg/squashfs-tools/patch/0001-Avoid-pointer-arithmetic-with-void.patch @@ -2,6 +2,7 @@ From 7668bc8b07dec7eeb8f2682e50ae5c740c25c704 Mon Sep 17 00:00:00 2001 From: Michael Forney <mforney@mforney.org> Date: Thu, 30 Jan 2020 11:38:23 -0800 Subject: [PATCH] Avoid pointer arithmetic with `void *` +Upstream: https://github.com/plougher/squashfs-tools/pull/86 `void *` is a pointer to an incomplete type, so cannot be used in pointer arithmetic. diff --git a/pkg/squashfs-tools/patch/0002-Don-t-omit-second-operand-to-conditional-operator.patch b/pkg/squashfs-tools/patch/0002-Don-t-omit-second-operand-to-conditional-operator.patch index e7b96177..ad2dc565 100644 --- a/pkg/squashfs-tools/patch/0002-Don-t-omit-second-operand-to-conditional-operator.patch +++ b/pkg/squashfs-tools/patch/0002-Don-t-omit-second-operand-to-conditional-operator.patch @@ -2,6 +2,7 @@ From 4f371cd8042d8b574a49d07c5bca1417e08d366c Mon Sep 17 00:00:00 2001 From: Michael Forney <mforney@mforney.org> Date: Thu, 30 Jan 2020 11:40:49 -0800 Subject: [PATCH] Don't omit second operand to conditional operator +Upstream: https://github.com/plougher/squashfs-tools/pull/86 This is a GNU C extension, and not valid in ISO C. --- diff --git a/pkg/squashfs-tools/patch/0003-Convert-TOK_TO_STR-to-an-inline-function.patch b/pkg/squashfs-tools/patch/0003-Convert-TOK_TO_STR-to-an-inline-function.patch index 83f8a231..1aa8f747 100644 --- a/pkg/squashfs-tools/patch/0003-Convert-TOK_TO_STR-to-an-inline-function.patch +++ b/pkg/squashfs-tools/patch/0003-Convert-TOK_TO_STR-to-an-inline-function.patch @@ -2,6 +2,7 @@ From 5bab68afaeaab209cde2ddb8767f0aa3f5b30e9f Mon Sep 17 00:00:00 2001 From: Michael Forney <mforney@mforney.org> Date: Fri, 31 Jan 2020 17:59:06 -0800 Subject: [PATCH] Convert TOK_TO_STR to an inline function +Upstream: https://github.com/plougher/squashfs-tools/pull/86 This avoids the use of statement expressions, which are a GNU C extension. |
