diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2024-02-17 10:51:31 +0100 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2024-02-18 00:07:33 +0100 |
commit | 339813b8fd86fab47cccdca451b06abc089f8adf (patch) | |
tree | 7923672ecf166236961d115205f573f5f62f8ad9 /textproc/scdoc/files/patch-clang15 | |
parent | graphics/vulkan-utility-libraries: update to 1.3.278 (diff) |
textproc/scdoc: update to 1.11.3
Changes: https://git.sr.ht/%7Esircmpwn/scdoc/refs/1.11.3
Reported by: Repology
Diffstat (limited to 'textproc/scdoc/files/patch-clang15')
-rw-r--r-- | textproc/scdoc/files/patch-clang15 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/textproc/scdoc/files/patch-clang15 b/textproc/scdoc/files/patch-clang15 deleted file mode 100644 index 8dd4a4a5e6f8..000000000000 --- a/textproc/scdoc/files/patch-clang15 +++ /dev/null @@ -1,24 +0,0 @@ -https://lists.sr.ht/~sircmpwn/public-inbox/patches/37432 - ---- include/str.h.orig 2021-11-13 08:04:45 UTC -+++ include/str.h -@@ -7,7 +7,7 @@ struct str { - size_t len, size; - }; - --struct str *str_create(); -+struct str *str_create(void); - void str_free(struct str *str); - void str_reset(struct str *str); - int str_append_ch(struct str *str, uint32_t ch); ---- src/string.c.orig 2021-11-13 08:04:45 UTC -+++ src/string.c -@@ -12,7 +12,7 @@ static void ensure_capacity(struct str *str, size_t le - } - } - --struct str *str_create() { -+struct str *str_create(void) { - struct str *str = xcalloc(1, sizeof(struct str)); - str->str = xcalloc(16, 1); - str->size = 16; |