From ce608784d0739170642d771f2edcd747787040cb Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 26 Jun 2017 14:40:58 -0600 Subject: [PATCH] pipe_loader_sw: fix compilation warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add the new 'flags' parameter to pipe_loader_sw_create_screen(). Reviewed-by: Marek Olšák --- src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c index 0fbc78e3818..46c6604f74e 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c @@ -294,7 +294,8 @@ pipe_loader_sw_configuration(struct pipe_loader_device *dev, } static struct pipe_screen * -pipe_loader_sw_create_screen(struct pipe_loader_device *dev) +pipe_loader_sw_create_screen(struct pipe_loader_device *dev, + unsigned flags) { struct pipe_loader_sw_device *sdev = pipe_loader_sw_device(dev); struct pipe_screen *screen; -- 2.30.2