Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 407189 | Differences between
and this patch

Collapse All | Expand All

(-)src/sndfile-jackplay.c.orig (-1 / +4 lines)
Lines 161-166 Link Here
161
	SNDFILE *sndfile ;
161
	SNDFILE *sndfile ;
162
	SF_INFO sndfileinfo ;
162
	SF_INFO sndfileinfo ;
163
	jack_client_t *client ;
163
	jack_client_t *client ;
164
	char jack_client_name[32] ;
165
	jack_status_t jack_status ;
166
	jack_options_t  jack_options = JackNullOption ;
164
	thread_info_t info ;
167
	thread_info_t info ;
165
	int i, jack_sr ;
168
	int i, jack_sr ;
166
169
Lines 170-176 Link Here
170
		} ;
173
		} ;
171
174
172
	// create jack client
175
	// create jack client
173
	if ((client = jack_client_new ("jackplay")) == 0)
176
	if ((client = jack_client_open(jack_client_name, jack_options, &jack_status)) == 0)
174
	{
177
	{
175
		fprintf (stderr, "Jack server not running?\n") ;
178
		fprintf (stderr, "Jack server not running?\n") ;
176
		return 1 ;
179
		return 1 ;

Return to bug 407189