net-p2p/gtk-gnutella: remove unused patch(es)
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Thu, 30 Jan 2020 15:20:22 +0000 (16:20 +0100)
committerAaron Bauman <bman@gentoo.org>
Thu, 14 May 2020 22:19:34 +0000 (18:19 -0400)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14506
Signed-off-by: Aaron Bauman <bman@gentoo.org>
net-p2p/gtk-gnutella/files/gtk-gnutella-1.1.14-statx.patch [deleted file]

diff --git a/net-p2p/gtk-gnutella/files/gtk-gnutella-1.1.14-statx.patch b/net-p2p/gtk-gnutella/files/gtk-gnutella-1.1.14-statx.patch
deleted file mode 100644 (file)
index 5d45588..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/src/lib/stats.c b/src/lib/stats.c
-index 8d0d87b8b..725986268 100644
---- a/src/lib/stats.c
-+++ b/src/lib/stats.c
-@@ -50,7 +50,7 @@ enum statx_magic { STATX_MAGIC = 0x560044e5 };
- /**
-  * A one-dimension container (x).
-  */
--struct statx {
-+struct statistics {
-       enum statx_magic magic; /**< Magic number */
-       elist_t data;                   /**< Data points */
-       long n;                                 /**< Amount of data points */
-@@ -60,7 +60,7 @@ struct statx {
- };
- static inline void
--statx_check(const struct statx * const sx)
-+statx_check(const struct statistics * const sx)
- {
-       g_assert(sx != NULL);
-       g_assert(STATX_MAGIC == sx->magic);
-diff --git a/src/lib/stats.h b/src/lib/stats.h
-index ba876467c..2a67952e2 100644
---- a/src/lib/stats.h
-+++ b/src/lib/stats.h
-@@ -40,9 +40,9 @@
-  * One dimension statistics.
-  */
--struct statx;
-+struct statistics;
--typedef struct statx statx_t;
-+typedef struct statistics statx_t;
- statx_t *statx_make(void);
- statx_t *statx_make_nodata(void);