From 34bcada42428a8206cfeaecf0b312e174289dec2 Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Date: Tue, 14 Apr 2009 22:21:53 +0000
Subject: [PATCH] Fix icc warning #188: enumerated type mixed with another
 type.

Originally committed as revision 18514 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavdevice/jack_audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavdevice/jack_audio.c b/libavdevice/jack_audio.c
index 8232a187e26..579cf0e1e31 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);
-- 
GitLab