From: cehoyos Date: Tue, 14 Apr 2009 22:21:53 +0000 (+0000) Subject: Fix icc warning #188: enumerated type mixed with another type. X-Git-Url: https://rtime.felk.cvut.cz/gitweb/frescor/ffmpeg.git/commitdiff_plain/02deab96b35228c77adeb6f44810d12101d70956 Fix icc warning #188: enumerated type mixed with another type. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18514 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- diff --git a/libavdevice/jack_audio.c b/libavdevice/jack_audio.c index 8232a187e..579cf0e1e 100644 --- a/libavdevice/jack_audio.c +++ b/libavdevice/jack_audio.c @@ -144,7 +144,7 @@ static int start_jack(AVFormatContext *context, AVFormatParameters *params) double o, period; /* Register as a JACK client, using the context filename as client name. */ - self->client = jack_client_open(context->filename, 0, &status); + self->client = jack_client_open(context->filename, JackNullOption, &status); if (!self->client) { av_log(context, AV_LOG_ERROR, "Unable to register as a JACK client\n"); return AVERROR(EIO);