- remove void * casts for NULL

This commit is contained in:
jasper 2011-04-16 11:06:47 +00:00
parent 4889b4d22a
commit 961d0f7d09
2 changed files with 2 additions and 14 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.40 2011/04/05 14:42:39 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.41 2011/04/16 11:06:47 jasper Exp $
COMMENT= window manager, continuation of the Bowman NeXTSTEP clone
DISTNAME= AfterStep-2.2.9
PKGNAME= ${DISTNAME:L}
REVISION= 1
REVISION= 2
CATEGORIES= x11
MASTER_SITES= http://distfiles.nl/ \
ftp://ftp.afterstep.org/stable/

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_Sound_ASSound_c,v 1.2 2009/12/06 15:09:22 jasper Exp $
--- src/Sound/ASSound.c.orig Wed Apr 1 23:35:09 2009
+++ src/Sound/ASSound.c Thu Dec 3 15:17:09 2009
@@ -159,7 +159,7 @@ PlaySound (int sid)
return;
else if (child == 0)
{
- execlp (SoundPlayer, SoundPlayer, SoundTable[sid]->data, NULL);
+ execlp (SoundPlayer, SoundPlayer, SoundTable[sid]->data, (void *)NULL);
}
else
{