From owner-svn-ports-all@FreeBSD.ORG Tue Sep 25 09:19:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 718B21065677; Tue, 25 Sep 2012 09:19:44 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5D03A8FC1A; Tue, 25 Sep 2012 09:19:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8P9JiNJ002111; Tue, 25 Sep 2012 09:19:44 GMT (envelope-from fluffy@svn.freebsd.org) Received: (from fluffy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8P9JiHp002110; Tue, 25 Sep 2012 09:19:44 GMT (envelope-from fluffy@svn.freebsd.org) Message-Id: <201209250919.q8P9JiHp002110@svn.freebsd.org> From: Dima Panov Date: Tue, 25 Sep 2012 09:19:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304826 - head/graphics/libvisual04-plugins/files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 09:19:44 -0000 Author: fluffy Date: Tue Sep 25 09:19:43 2012 New Revision: 304826 URL: http://svn.freebsd.org/changeset/ports/304826 Log: - Fix mistyped return statements, which clang objects strenuously to PR: 171892 Submitted by: myself Approved by: bkoenig AT alpha-tierchen DOT de (maintainer) Obtained from: PkgSrc Added: head/graphics/libvisual04-plugins/files/ head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c (contents, props changed) Added: head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c Tue Sep 25 09:19:43 2012 (r304826) @@ -0,0 +1,13 @@ +- fix mistyped return statements, which clang objects strenuously to + +--- plugins/morph/flash/morph_flash.c~ 2006-01-27 20:19:18.000000000 +0000 ++++ plugins/morph/flash/morph_flash.c +@@ -116,7 +116,7 @@ int lv_morph_flash_palette (VisPluginDat + FlashPrivate *priv = visual_object_get_private (VISUAL_OBJECT (plugin)); + + if (src1->pal == NULL || src2->pal == NULL) +- return; ++ return 0; + + if (rate < 0.5) + visual_palette_blend (pal, src1->pal, &priv->whitepal, rate * 2);