[packages/pinentry] remove types patch dropped from spec in 0a2f23f
atler
atler at pld-linux.org
Fri Jan 22 13:33:18 CET 2021
commit 6d2d760f10bb43412a31380374b2b2c9581d69c6
Author: Jan Palus <atler at pld-linux.org>
Date: Fri Jan 22 13:31:52 2021 +0100
remove types patch dropped from spec in 0a2f23f
pinentry-types.patch | 43 -------------------------------------------
1 file changed, 43 deletions(-)
---
diff --git a/pinentry-types.patch b/pinentry-types.patch
deleted file mode 100644
index 8f7d826..0000000
--- a/pinentry-types.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- pinentry-0.7.5/gtk+-2/gtksecentry.c.orig 2007-11-19 12:20:50.000000000 +0100
-+++ pinentry-0.7.5/gtk+-2/gtksecentry.c 2008-05-12 20:50:27.578544279 +0200
-@@ -270,7 +270,7 @@
-
-
- gpointer
--g_malloc(gulong size)
-+g_malloc(gsize size)
- {
- gpointer p;
-
-@@ -282,13 +282,13 @@
- else
- p = (gpointer) malloc(size);
- if (!p)
-- g_error("could not allocate %ld bytes", size);
-+ g_error("could not allocate %zd bytes", size);
-
- return p;
- }
-
- gpointer
--g_malloc0(gulong size)
-+g_malloc0(gsize size)
- {
- gpointer p;
-
-@@ -302,13 +302,13 @@
- } else
- p = (gpointer) calloc(size, 1);
- if (!p)
-- g_error("could not allocate %ld bytes", size);
-+ g_error("could not allocate %zd bytes", size);
-
- return p;
- }
-
- gpointer
--g_realloc(gpointer mem, gulong size)
-+g_realloc(gpointer mem, gsize size)
- {
- gpointer p;
-
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/pinentry.git/commitdiff/0ddd2638a88108c1db99d1429095c948a1564d98
More information about the pld-cvs-commit
mailing list