Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 May 2013 17:10:11 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r318435 - head/audio/grip/files
Message-ID:  <201305181710.r4IHAB2d041659@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: crees
Date: Sat May 18 17:10:10 2013
New Revision: 318435
URL: http://svnweb.freebsd.org/changeset/ports/318435

Log:
  Build with clang once more; fix a void return from int function.
  
  Not that the result is ever checked... but never mind about that.
  
  Reviewed by:	Silence on multimedia@

Added:
  head/audio/grip/files/patch-src-gripcfg.c   (contents, props changed)

Added: head/audio/grip/files/patch-src-gripcfg.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/grip/files/patch-src-gripcfg.c	Sat May 18 17:10:10 2013	(r318435)
@@ -0,0 +1,11 @@
+--- src/gripcfg.c.orig	2013-05-12 21:29:57.498271858 +0100
++++ src/gripcfg.c	2013-05-12 21:30:09.109272899 +0100
+@@ -791,7 +791,7 @@
+   };
+ 
+ #ifdef CDPAR
+-  if(ripcfg==0) return;
++  if(ripcfg==0) return (0);
+ #endif
+ 
+   sprintf(buf,"%s/%s-%s",getenv("HOME"),ginfo->config_filename,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305181710.r4IHAB2d041659>