mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
$NetBSD: patch-support_wplay_c,v 1.1 2011/09/04 23:35:53 dholland Exp $
|
|
|
|
fix void main
|
|
|
|
--- support/wplay.c.orig 1998-08-12 23:27:11.000000000 +0000
|
|
+++ support/wplay.c
|
|
@@ -123,7 +123,7 @@ void play_file(char *fname)
|
|
return;
|
|
}
|
|
|
|
-void main(int argc,char *argv[])
|
|
+int main(int argc,char *argv[])
|
|
{
|
|
int i;
|
|
for (i=1;i<argc;i++) play_file(argv[i]);
|