diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-07-16 02:07:10 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-07-16 02:07:10 +0800 |
commit | 3b779b1873c5228620fd625cc4843ba144fbc88b (patch) | |
tree | 46da4954e0c73a889fcf49fef952393d946b9cab /multimedia/totem-pl-parser/files | |
parent | a54aa56183cf8693b88a5fcee7a5db22d51ed2b7 (diff) | |
download | marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar.gz marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar.bz2 marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar.lz marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar.xz marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.tar.zst marcuscom-ports-3b779b1873c5228620fd625cc4843ba144fbc88b.zip |
Update to 2.23.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11116 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/totem-pl-parser/files')
-rw-r--r-- | multimedia/totem-pl-parser/files/patch-plparse_totem-pl-parser.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/multimedia/totem-pl-parser/files/patch-plparse_totem-pl-parser.c b/multimedia/totem-pl-parser/files/patch-plparse_totem-pl-parser.c deleted file mode 100644 index 7a2da7001..000000000 --- a/multimedia/totem-pl-parser/files/patch-plparse_totem-pl-parser.c +++ /dev/null @@ -1,19 +0,0 @@ ---- plparse/totem-pl-parser.c 2008/06/10 12:46:22 139 -+++ plparse/totem-pl-parser.c 2008/07/03 13:02:07 148 -@@ -97,6 +97,7 @@ - - #include <string.h> - #include <glib.h> -+#include <glib/gstdio.h> - #include <glib/gi18n-lib.h> - #include <gio/gio.h> - -@@ -644,7 +645,7 @@ - char *path; - - path = g_file_get_path (file); -- if (stat (path, &buf) == 0 && S_ISBLK (buf.st_mode)) { -+ if (g_stat (path, &buf) == 0 && S_ISBLK (buf.st_mode)) { - g_free (path); - return g_strdup (BLOCK_DEVICE_TYPE); - } |