svn commit: r318435 - head/audio/grip/files
Chris Rees
crees at FreeBSD.org
Sat May 18 17:10:11 UTC 2013
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,
More information about the svn-ports-all
mailing list