View | Details | Raw Unified | Return to bug 65433
Collapse All | Expand All

(-)Input/cdaudio/cdaudio.c (-1 / +1 lines)
Lines 333-339 Link Here
333
#elif defined(HAVE_GETMNTINFO)
333
#elif defined(HAVE_GETMNTINFO)
334
 	entries = getmntinfo(&fsp, MNT_NOWAIT);
334
 	entries = getmntinfo(&fsp, MNT_NOWAIT);
335
 	if (entries < 0)
335
 	if (entries < 0)
336
 		return NULL;
336
 		return FALSE;
337
	
337
	
338
	while (entries-- > 0)
338
	while (entries-- > 0)
339
	{
339
	{
(-)Output/esd/esdout.h (+1 lines)
Lines 67-72 Link Here
67
void esdout_fetch_volume(int *l, int *r);
67
void esdout_fetch_volume(int *l, int *r);
68
void esdout_set_volume(int l, int r);
68
void esdout_set_volume(int l, int r);
69
void esdout_mixer_init(void);
69
void esdout_mixer_init(void);
70
void esdout_reset_playerid(void);
70
71
71
int esdout_playing(void);
72
int esdout_playing(void);
72
int esdout_free(void);
73
int esdout_free(void);
(-)libxmms/util.c (-1 / +2 lines)
Lines 80-86 Link Here
80
	 * before sched_getschedule() (so that we don't get
80
	 * before sched_getschedule() (so that we don't get
81
	 * non-present syscall warnings in kernel log).
81
	 * non-present syscall warnings in kernel log).
82
	 */
82
	 */
83
	int val = 0, len;
83
	int val = 0;
84
	size_t len;
84
85
85
	len = sizeof(val);
86
	len = sizeof(val);
86
	sysctlbyname("p1003_1b.priority_scheduling", &val, &len, NULL, 0);
87
	sysctlbyname("p1003_1b.priority_scheduling", &val, &len, NULL, 0);
(-)libxmms/xmmsctrl.c (+1 lines)
Lines 30-35 Link Here
30
#include <errno.h>
30
#include <errno.h>
31
#include <stdio.h>
31
#include <stdio.h>
32
#include <stdlib.h>
32
#include <stdlib.h>
33
#include <string.h>
33
#include "xmmsctrl.h"
34
#include "xmmsctrl.h"
34
#include "../xmms/controlsocket.h"
35
#include "../xmms/controlsocket.h"
35
36
(-)wmxmms/getopt.c (-3 / +1 lines)
Lines 43-48 Link Here
43
#endif
43
#endif
44
44
45
#include <stdio.h>
45
#include <stdio.h>
46
#include <string.h>
46
47
47
/* Comment out all this code if we are using the GNU C Library, and are not
48
/* Comment out all this code if we are using the GNU C Library, and are not
48
   actually compiling the library itself.  This code is part of the GNU C
49
   actually compiling the library itself.  This code is part of the GNU C
Lines 73-81 Link Here
73
74
74
#ifdef VMS
75
#ifdef VMS
75
#include <unixlib.h>
76
#include <unixlib.h>
76
#if HAVE_STRING_H - 0
77
#include <string.h>
78
#endif
79
#endif
77
#endif
80
78
81
#if defined (WIN32) && !defined (__CYGWIN32__)
79
#if defined (WIN32) && !defined (__CYGWIN32__)
(-)xmms/getopt.c (-3 / +1 lines)
Lines 43-48 Link Here
43
#endif
43
#endif
44
44
45
#include <stdio.h>
45
#include <stdio.h>
46
#include <string.h>
46
47
47
/* Comment out all this code if we are using the GNU C Library, and are not
48
/* Comment out all this code if we are using the GNU C Library, and are not
48
   actually compiling the library itself.  This code is part of the GNU C
49
   actually compiling the library itself.  This code is part of the GNU C
Lines 73-81 Link Here
73
74
74
#ifdef VMS
75
#ifdef VMS
75
#include <unixlib.h>
76
#include <unixlib.h>
76
#if HAVE_STRING_H - 0
77
#include <string.h>
78
#endif
79
#endif
77
#endif
80
78
81
#if defined (WIN32) && !defined (__CYGWIN32__)
79
#if defined (WIN32) && !defined (__CYGWIN32__)

Return to bug 65433