1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
Only in rhythmbox-0.6.5/help/C: authors.xml
diff -ur rhythmbox-0.6.5/lib/rb-util.c rhythmbox-0.6.5-patched/lib/rb-util.c
--- rhythmbox-0.6.5/lib/rb-util.c 2004-01-18 03:57:40.000000000 +0100
+++ rhythmbox-0.6.5-patched/lib/rb-util.c 2004-02-13 22:52:14.000000000 +0100
@@ -22,13 +22,13 @@
#include "rb-util.h"
gboolean
-rb_true_function (gpointer dummy, ...)
+rb_true_function (gpointer dummy)
{
return TRUE;
}
gboolean
-rb_false_function (gpointer dummy, ...)
+rb_false_function (gpointer dummy)
{
return FALSE;
}
diff -ur rhythmbox-0.6.5/lib/rb-util.h rhythmbox-0.6.5-patched/lib/rb-util.h
--- rhythmbox-0.6.5/lib/rb-util.h 2004-01-18 03:57:40.000000000 +0100
+++ rhythmbox-0.6.5-patched/lib/rb-util.h 2004-02-13 22:51:45.000000000 +0100
@@ -28,8 +28,8 @@
G_BEGIN_DECLS
-gboolean rb_true_function (gpointer dummy, ...);
-gboolean rb_false_function (gpointer dummy, ...);
+gboolean rb_true_function (gpointer dummy);
+gboolean rb_false_function (gpointer dummy);
gboolean rb_gvalue_compare (GValue *a, GValue *b);
Only in rhythmbox-0.6.5/monkey-media: monkey-media-includes.h
Only in rhythmbox-0.6.5/monkey-media: monkey-media-marshal.c
Only in rhythmbox-0.6.5/monkey-media: monkey-media-marshal.h
diff -ur rhythmbox-0.6.5/monkey-media/monkey-media-player-gst-tmp.c rhythmbox-0.6.5-patched/monkey-media/monkey-media-player-gst-tmp.c
--- rhythmbox-0.6.5/monkey-media/monkey-media-player-gst-tmp.c 2004-01-18 03:57:40.000000000 +0100
+++ rhythmbox-0.6.5-patched/monkey-media/monkey-media-player-gst-tmp.c 2004-02-13 21:12:12.000000000 +0100
@@ -347,7 +347,7 @@
{
char *ret = NULL, *cset;
va_list args;
- int bytes_read, bytes_written;
+ gsize bytes_read, bytes_written;
if (g_utf8_validate (str, len, NULL))
return g_strndup (str, len >= 0 ? len : strlen (str));
@@ -356,10 +356,10 @@
while ((cset = va_arg (args, char *)) != NULL)
{
if (!strcmp (cset, "locale"))
- ret = g_locale_to_utf8 (str, len, &bytes_read,
+ ret = g_locale_to_utf8 (str, (gsize) len, &bytes_read,
&bytes_written, NULL);
else
- ret = g_convert (str, len, "UTF-8", cset,
+ ret = g_convert (str, (gsize) len, "UTF-8", cset,
&bytes_read, &bytes_written, NULL);
if (ret)
break;
Only in rhythmbox-0.6.5-patched: readme
Only in rhythmbox-0.6.5: rhythmbox.spec
|