From 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 10 Feb 2013 01:12:52 -0800 Subject: Sun Feb 10 01:12:35 PST 2013 --- core/xz/compile-fix.patch | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 core/xz/compile-fix.patch (limited to 'core/xz') diff --git a/core/xz/compile-fix.patch b/core/xz/compile-fix.patch deleted file mode 100644 index f3b7878d1..000000000 --- a/core/xz/compile-fix.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 7db6bdf4abcf524115be2cf5659ed540cef074c5 Mon Sep 17 00:00:00 2001 -From: Lasse Collin -Date: Tue, 10 Jan 2012 17:13:03 +0200 -Subject: [PATCH] Tests: Fix a compiler warning with _FORTIFY_SOURCE. - -Reported here: -http://sourceforge.net/projects/lzmautils/forums/forum/708858/topic/4927385 ---- - tests/create_compress_files.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -diff --git a/tests/create_compress_files.c b/tests/create_compress_files.c -index 44367d8..bd5b4ef 100644 ---- a/tests/create_compress_files.c -+++ b/tests/create_compress_files.c -@@ -79,7 +79,8 @@ static void - write_abc(FILE *file) - { - for (size_t i = 0; i < 12345; ++i) -- fwrite("abc\n", 4, 1, file); -+ if (fwrite("abc\n", 4, 1, file) != 1) -+ exit(1); - } - - --- -1.7.6 - -- cgit v1.2.3-54-g00ecf