mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-23 03:33:34 -04:00
16 lines
392 B
Plaintext
16 lines
392 B
Plaintext
$NetBSD: patch-dtsdec,v 1.2 2008/09/07 13:54:43 wiz Exp $
|
|
|
|
--- src/dcadec.c.orig Mon Feb 23 23:30:49 2004
|
|
+++ src/dcadec.c Fri Jun 8 21:09:29 2007
|
|
@@ -65,7 +65,9 @@
|
|
{
|
|
sigint = 1;
|
|
signal (sig, SIG_DFL);
|
|
- return (RETSIGTYPE)0;
|
|
+ /* No return statement, since we cannot know whether the return
|
|
+ * type is "void" or "int".
|
|
+ */
|
|
}
|
|
|
|
static void print_fps (int final)
|